This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/utils/my-guard/my-guard.guard.spec.ts
2021-12-24 12:14:20 +01:00

16 lines
347 B
TypeScript

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