Spaces:
Running
Running
File size: 397 Bytes
88bf46c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { TestBed } from '@angular/core/testing';
import { AuthenticationService } from './authentication.service';
describe('AuthenticationService', () => {
let service: AuthenticationService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AuthenticationService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
|