barker/bookie/src/app/sales/can-deactivate-bill.guard.s...

17 lines
398 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { CanDeactivateBillGuard } from './can-deactivate-bill.guard';
describe('CanDeactivateBillGuard', () => {
let guard: CanDeactivateBillGuard;
beforeEach(() => {
TestBed.configureTestingModule({});
guard = TestBed.inject(CanDeactivateBillGuard);
});
it('should be created', () => {
expect(guard).toBeTruthy();
});
});