Initial commit

This commit is contained in:
2025-03-05 21:38:10 +01:00
commit 503909d762
198 changed files with 19203 additions and 0 deletions

View 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();
});
});