Commits

Bruno Roemers authored 3bc031ff00b
80113: Create Group Page guard
No tags

src/app/access-control/group-registry/group-page.guard.spec.ts

Added
1 +import { TestBed } from '@angular/core/testing';
2 +
3 +import { GroupPageGuard } from './group-page.guard';
4 +
5 +describe('GroupPageGuard', () => {
6 + let guard: GroupPageGuard;
7 +
8 + beforeEach(() => {
9 + TestBed.configureTestingModule({});
10 + guard = TestBed.inject(GroupPageGuard);
11 + });
12 +
13 + it('should be created', () => {
14 + expect(guard).toBeTruthy();
15 + });
16 +});

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut