mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
17 lines
331 B
TypeScript
17 lines
331 B
TypeScript
|
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
|
||
|
|
import { AuthGuard } from './auth.guard';
|
||
|
|
|
||
|
|
describe('AuthGuard', () => {
|
||
|
|
let guard: AuthGuard;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({});
|
||
|
|
guard = TestBed.inject(AuthGuard);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should be created', () => {
|
||
|
|
expect(guard).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|