OpenSlides/client/src/app/shared/utils/watch-for-changes.guard.spec.ts
FinnStutzenstein cf7a5ce714 Reworked config
- Move config meta data into REST
- seperate views for config groups
2019-10-21 13:45:06 +02:00

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();
}));
});