Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 12055d9

Browse files
committed
chore(test): disable failing E2E tests
Work around issue #1316.  Two E2E tests have begun to fail for unknown reasons.  Disabling them until they're fixed properly. Closes #1317
1 parent c3cf305 commit 12055d9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test_e2e/todo_spec.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ main() {
102102
S.assertNewItem('a');
103103
});
104104

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', () {
106107
expect(S.newItemText).toEqual('');
107108
var text = 'Typing something ...';
108109
S.newItemInput.sendKeys(text);
@@ -112,15 +113,16 @@ main() {
112113
S.assertTodos();
113114
});
114115

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', () {
116118
S.newItemInput.sendKeys('Typing something ...');
117119
S.clearBtn.click();
118120
// input field should be clear.
119121
expect(S.newItemText).toEqual('');
120122
S.assertTodos();
121123
});
122124

123-
// TODO(chirayu): Disabled because this times out on Travis + SauceLabs.
125+
// TODO: Re-enable when issue 1316 is resolved correctly.
124126
xit('should add a new item and clear the input field', () {
125127
var text = 'Test using Protractor';
126128
S.newItemInput.sendKeys(text);

0 commit comments

Comments
 (0)