blob: 7ed05ee8111b45cec3834ee041fda1ec5a79d210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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();
}));
});
|