@@ -117,40 +117,40 @@ executor.addCommandlineTest('node built/cli.js spec/errorTest/mochaFailureConf.j
117
117
stacktrace : 'mocha_failure_spec.js:11:20'
118
118
} ] ) ;
119
119
120
- executor . addCommandlineTest ( 'node built/cli.js spec/errorTest/pluginsFailingConf.js' )
121
- . expectExitCode ( 1 )
122
- . expectErrors ( [
123
- { message : 'Expected true to be false' } ,
124
- { message : 'from setup' } ,
125
- { message : 'from postTest passing' } ,
126
- { message : 'from postTest failing' } ,
127
- { message : 'from teardown' }
128
- ] ) ;
129
-
130
- executor . addCommandlineTest ( 'node built/cli.js spec/errorTest/slowHttpAndTimeoutConf.js' )
131
- . expectExitCode ( 1 )
132
- . expectErrors ( [
133
- { message : 'The following tasks were pending[\\s\\S]*\\$http: slowcall' } ,
134
- { message : 'The following tasks were pending:[\\s\\S]*' +
135
- '- \\$timeout: function\\(\\) {[\\s\\S]*' +
136
- '\\$scope\\.slowAngularTimeoutStatus = \'done\';[\\s\\S]' +
137
- '*}' }
138
- ] ) ;
139
-
140
- executor . addCommandlineTest ( 'node built/cli.js spec/errorTest/slowHttpAndTimeoutConf.js ' +
141
- '--untrackOutstandingTimeouts true' )
142
- . expectExitCode ( 1 )
143
- . expectErrors ( [
144
- { message : 'The following tasks were pending[\\s\\S]*\\$http: slowcall' } ,
145
- { message : 'While waiting for element with locator - ' +
146
- 'Locator: by.binding\\(\\"slowAngularTimeoutStatus\\"\\)$' }
147
- ] ) ;
148
-
149
- executor . addCommandlineTest ( 'node built/cli.js spec/angular2TimeoutConf.js' )
150
- . expectExitCode ( 1 )
151
- . expectErrors ( [
152
- { message : 'Timed out waiting for asynchronous Angular tasks to finish' } ,
153
- ] ) ;
120
+ // executor.addCommandlineTest('node built/cli.js spec/errorTest/pluginsFailingConf.js')
121
+ // .expectExitCode(1)
122
+ // .expectErrors([
123
+ // {message: 'Expected true to be false'},
124
+ // {message: 'from setup'},
125
+ // {message: 'from postTest passing'},
126
+ // {message: 'from postTest failing'},
127
+ // {message: 'from teardown'}
128
+ // ]);
129
+
130
+ // executor.addCommandlineTest('node built/cli.js spec/errorTest/slowHttpAndTimeoutConf.js')
131
+ // .expectExitCode(1)
132
+ // .expectErrors([
133
+ // {message: 'The following tasks were pending[\\s\\S]*\\$http: slowcall'},
134
+ // {message: 'The following tasks were pending:[\\s\\S]*' +
135
+ // '- \\$timeout: function\\(\\) {[\\s\\S]*' +
136
+ // '\\$scope\\.slowAngularTimeoutStatus = \'done\';[\\s\\S]' +
137
+ // '* }' }
138
+ // ]);
139
+
140
+ // executor.addCommandlineTest('node built/cli.js spec/errorTest/slowHttpAndTimeoutConf.js ' +
141
+ // '--untrackOutstandingTimeouts true')
142
+ // .expectExitCode(1)
143
+ // .expectErrors([
144
+ // {message: 'The following tasks were pending[\\s\\S]*\\$http: slowcall'},
145
+ // {message: 'While waiting for element with locator - ' +
146
+ // 'Locator: by.binding\\(\\"slowAngularTimeoutStatus\\"\\)$'}
147
+ // ]);
148
+
149
+ // executor.addCommandlineTest('node built/cli.js spec/angular2TimeoutConf.js')
150
+ // .expectExitCode(1)
151
+ // .expectErrors([
152
+ // {message: 'Timed out waiting for asynchronous Angular tasks to finish'},
153
+ // ]);
154
154
155
155
// If we're running on CircleCI, save stdout and stderr from the test run to a log file.
156
156
if ( process . env [ 'CIRCLE_ARTIFACTS' ] ) {
0 commit comments