16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import { TestBed, async, inject } from '@angular/core/testing';
|
|
|
|
import { AuthGuard } from './auth.guard';
|
|
|
|
describe('AuthGuard', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [AuthGuard]
|
|
});
|
|
});
|
|
|
|
it('should ...', inject([AuthGuard], (guard: AuthGuard) => {
|
|
expect(guard).toBeTruthy();
|
|
}));
|
|
});
|