You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome/src/app/services/movie-app-data.service.spec.ts

19 lines
506 B
TypeScript

import { HttpClientTestingModule } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';
import { MovieAppDataService } from './movie-app-data.service';
describe('MovieAppDataService', () => {
let service: MovieAppDataService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule]
});
service = TestBed.inject(MovieAppDataService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});