9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
|
import { DomChangeDirective } from './dom-change.directive';
|
||
|
|
||
|
describe('DomChangeDirective', () => {
|
||
|
it('should create an instance', () => {
|
||
|
const directive = new DomChangeDirective();
|
||
|
expect(directive).toBeTruthy();
|
||
|
});
|
||
|
});
|