Files
doneit-web/src/app/guards/login.guard.spec.ts
T
Peter Maquiran 382104d058 Improve
2021-07-02 16:05:21 +01:00

17 lines
336 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { LoginGuard } from './login.guard';
describe('LoginGuard', () => {
let guard: LoginGuard;
beforeEach(() => {
TestBed.configureTestingModule({});
guard = TestBed.inject(LoginGuard);
});
it('should be created', () => {
expect(guard).toBeTruthy();
});
});