blob: 6f3c1e43475326e45e40d863b365c9fbbee38692 (
plain)
1
2
3
4
5
6
7
8
|
import { TextareaDirective } from './textarea.directive';
describe('TextareaDirective', () => {
it('should create an instance', () => {
const directive = new TextareaDirective();
expect(directive).toBeTruthy();
});
});
|