mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00

Implemented function to handle when the clearInput button is pressed on an ion-input element
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
|
|
it('should clear input', function() {
|
|
element(by.css('.e2eClearInput')).click();
|
|
expect(by.css('.e2eClearInput').getText()).toEqual('');
|
|
});
|