We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e404c4 commit 8d38ec3Copy full SHA for 8d38ec3
src/ng/directive/input.js
@@ -2322,13 +2322,15 @@ var ngValueDirective = function() {
2322
var other = element(by.model('user.data'));
2323
2324
it('should allow custom events', function() {
2325
+ input.click();
2326
input.sendKeys(' hello');
2327
expect(model.getText()).toEqual('say');
2328
other.click();
2329
expect(model.getText()).toEqual('say hello');
2330
});
2331
2332
it('should $cancelUpdate when model changes', function() {
2333
2334
2335
expect(input.getAttribute('value')).toEqual('say hello');
2336
input.sendKeys(protractor.Key.ESCAPE);
0 commit comments