57db6fb62ced840f7f2623b839349525f375636e
[portal/sdk.git] /
1 import { TestBed } from '@angular/core/testing';
2
3 import { SqlService } from './sql.service';
4 import { HttpClientTestingModule } from '@angular/common/http/testing';
5
6 describe('SqlService', () => {
7   beforeEach(() => 
8   TestBed.configureTestingModule({
9     imports: [HttpClientTestingModule]
10   }));
11
12   it('should be created', () => {
13     const service: SqlService = TestBed.get(SqlService);
14     expect(service).toBeTruthy();
15   });
16 });