What Angular utilities, if any, are required to unit test a service with no constructor dependencies?
The TestBed class iss needed to instantiate the service. Angular unit tests - recheck answers
A text fixture is required to run the service for the unit test.
By.css() helper method is needed
None. A service can be instantiated and unit tested on its own.