Projekt

Obecné

Profil

Stáhnout (420 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
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
});
(1-1/2)