ajout de la guard

This commit is contained in:
MiharyR 2021-12-24 12:14:20 +01:00
parent b9c3e7d0f3
commit c55af87a23
5 changed files with 34853 additions and 4 deletions

View file

@ -0,0 +1,16 @@
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();
});
});