Initial commit
This commit is contained in:
12
src/app/ce.directive.spec.ts
Normal file
12
src/app/ce.directive.spec.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user