Project

General

Profile

1
import { TestBed } from '@angular/core/testing';
2

    
3
import { AuthGuard } from './auth.guard';
4

    
5
describe('AuthGuard', () => {
6
  let guard: AuthGuard;
7

    
8
  beforeEach(() => {
9
    TestBed.configureTestingModule({});
10
    guard = TestBed.inject(AuthGuard);
11
  });
12

    
13
  it('should be created', () => {
14
    expect(guard).toBeTruthy();
15
  });
16
});
(1-1/2)