Files
unknown d8e2849be8 feat(Input): added functionality for clear input option on ion-input
Implemented function to handle when the clearInput button is pressed on an ion-input element
2016-04-14 09:03:00 -05:00

6 lines
146 B
TypeScript

it('should clear input', function() {
element(by.css('.e2eClearInput')).click();
expect(by.css('.e2eClearInput').getText()).toEqual('');
});