cic-staff-client/src/app/shared/_directives/menu-selection.directive.sp...

19 lines
544 B
TypeScript

import { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';
import { ElementRef, Renderer2 } from '@angular/core';
describe('MenuSelectionDirective', () => {
// tslint:disable-next-line:prefer-const
let elementRef: ElementRef;
// tslint:disable-next-line:prefer-const
let renderer: Renderer2;
beforeEach(() => {
// renderer = new
});
it('should create an instance', () => {
const directive = new MenuSelectionDirective(elementRef, renderer);
expect(directive).toBeTruthy();
});
});