16 lines
390 B
TypeScript
16 lines
390 B
TypeScript
|
import { TestBed, inject } from '@angular/core/testing';
|
||
|
|
||
|
import { AuthService } from './auth.service';
|
||
|
|
||
|
describe('ConfigService', () => {
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
providers: [AuthService]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should be created', inject([AuthService], (service: AuthService) => {
|
||
|
expect(service).toBeTruthy();
|
||
|
}));
|
||
|
});
|