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