Files
ipwa/src/app/ce.directive.spec.ts
2025-03-05 21:38:10 +01:00

13 lines
343 B
TypeScript

import { ElementRef } from '@angular/core';
import { CeDirective } from './ce.directive';
describe('CeDirective', () => {
it('should create an instance', () => {
const elref = jasmine.createSpyObj<ElementRef>({
nativeElement: null
})
const directive = new CeDirective(elref);
expect(directive).toBeTruthy();
});
});