novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
15 lines (11 loc) • 322 B
text/typescript
// APP
import { TextAreaControl } from './TextAreaControl';
describe('Control: TextAreaControl', () => {
let control;
beforeEach(() => {
control = new TextAreaControl({});
});
it('should have the right control type', () => {
expect(control.controlType).toEqual('text-area');
});
});