blob: 85e6e2948fd42a520045ff93b0cf359a450108d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { TestBed } from '@angular/core/testing';
import { ManifestService } from './manifest.service';
import { HttpClientTestingModule } from '@angular/common/http/testing';
describe('ManifestService', () => {
beforeEach(() => TestBed.configureTestingModule({imports:[HttpClientTestingModule]}));
it('should be created', () => {
const service: ManifestService = TestBed.get(ManifestService);
expect(service).toBeTruthy();
});
});
|