cf7a5ce714
- Move config meta data into REST - seperate views for config groups
16 lines
434 B
TypeScript
16 lines
434 B
TypeScript
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { WatchForChangesGuard } from './watch-for-changes.guard';
|
|
|
|
describe('WatchSortingTreeGuard', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [WatchForChangesGuard]
|
|
});
|
|
});
|
|
|
|
it('should ...', inject([WatchForChangesGuard], (guard: WatchForChangesGuard) => {
|
|
expect(guard).toBeTruthy();
|
|
}));
|
|
});
|