May 2018
Intermediate to advanced
512 pages
11h 3m
English
You'll note that the number of errors didn't go down. Instead, AppComponent and CurrentWeatherComponent are failing to be created due to a missing provider for WeatherService. So, let's add the provider for WeatherService to the spec files for both components.
src/app/app.component.spec.tssrc/app/current-weather/current-weather.component.spec.ts... beforeEach( async(() => { TestBed.configureTestingModule({ declarations: [...], providers: [WeatherService], ...
Read now
Unlock full access