This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ animation_ng_repeat_spec() {
7878 S .assertState ();
7979 });
8080
81- it ('should add things with monotonically increasing numbers' , () {
81+ // TODO(chirayu): Disabled because this times out on Travis + SauceLabs.
82+ xit ('should add things with monotonically increasing numbers' , () {
8283 S .addThing ();
8384 S .addThing (); S .removeThing (); S .addThing ();
8485 S .addThing (); S .removeThing (); S .addThing ();
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ var config = {
3535 isVerbose : true , // display spec names.
3636 showColors : true , // print colors to the terminal.
3737 includeStackTrace : true , // include stack traces in failures.
38- defaultTimeoutInterval : 40000 // wait time in ms before failing a test.
38+ defaultTimeoutInterval : 80000 // wait time in ms before failing a test.
3939 } ,
4040} ;
4141
@@ -49,8 +49,6 @@ if (process.env.SAUCE_USERNAME != null) {
4949 capability [ 'tunnel-identifier' ] = process . env . TRAVIS_JOB_NUMBER ;
5050 capability [ 'build' ] = process . env . TRAVIS_BUILD_NUMBER ;
5151 capability [ 'name' ] = 'AngularDart E2E Suite' ;
52- // Double the timeout for Sauce.
53- capability [ 'defaultTimeoutInterval' ] *= 2 ;
5452 } ) ;
5553}
5654
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ main() {
120120 S .assertTodos ();
121121 });
122122
123- it ('should add a new item and clear the input field' , () {
123+ // TODO(chirayu): Disabled because this times out on Travis + SauceLabs.
124+ xit ('should add a new item and clear the input field' , () {
124125 var text = 'Test using Protractor' ;
125126 S .newItemInput.sendKeys (text);
126127 S .addBtn.click ();
You can’t perform that action at this time.
0 commit comments