aswi2020anonymous-gitlab/fe/fulltextsearch/src/app/services/query.service.spec.ts @ 5da39206
1 | f3d8e7de | Ondřej Váně | import { TestBed } from '@angular/core/testing'; |
---|---|---|---|
2 | |||
3 | import { QueryService } from './query.service'; |
||
4 | import {HttpClientModule} from '@angular/common/http'; |
||
5 | |||
6 | describe('QueryService', () => { |
||
7 | beforeEach(() => TestBed.configureTestingModule({ |
||
8 | imports: [HttpClientModule] |
||
9 | }));
|
||
10 | |||
11 | it('should be created', () => { |
||
12 | const service: QueryService = TestBed.get(QueryService); |
||
13 | expect(service).toBeTruthy(); |
||
14 | });
|
||
15 | });
|