16 lines
439 B
TypeScript
16 lines
439 B
TypeScript
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { WatchSortingTreeGuard } from './watch-sorting-tree.guard';
|
|
|
|
describe('WatchSortingTreeGuard', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [WatchSortingTreeGuard]
|
|
});
|
|
});
|
|
|
|
it('should ...', inject([WatchSortingTreeGuard], (guard: WatchSortingTreeGuard) => {
|
|
expect(guard).toBeTruthy();
|
|
}));
|
|
});
|