Commits
Bruno Roemers authored 3bc031ff00b
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 + | }); |