This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ main() {
102
102
S .assertNewItem ('a' );
103
103
});
104
104
105
- it ('should reflect new item text changes in model' , () {
105
+ // TODO: Re-enable when issue 1316 is resolved correctly.
106
+ xit ('should reflect new item text changes in model' , () {
106
107
expect (S .newItemText).toEqual ('' );
107
108
var text = 'Typing something ...' ;
108
109
S .newItemInput.sendKeys (text);
@@ -112,15 +113,16 @@ main() {
112
113
S .assertTodos ();
113
114
});
114
115
115
- it ('should clear input with clear button' , () {
116
+ // TODO: Re-enable when issue 1316 is resolved correctly.
117
+ xit ('should clear input with clear button' , () {
116
118
S .newItemInput.sendKeys ('Typing something ...' );
117
119
S .clearBtn.click ();
118
120
// input field should be clear.
119
121
expect (S .newItemText).toEqual ('' );
120
122
S .assertTodos ();
121
123
});
122
124
123
- // TODO(chirayu): Disabled because this times out on Travis + SauceLabs .
125
+ // TODO: Re-enable when issue 1316 is resolved correctly .
124
126
xit ('should add a new item and clear the input field' , () {
125
127
var text = 'Test using Protractor' ;
126
128
S .newItemInput.sendKeys (text);
You can’t perform that action at this time.
0 commit comments