@@ -126,7 +126,7 @@ module.exports = TestCommand.extend({
126126 const validator = new Validator (
127127 commandOptions ,
128128 this . _getTestFramework ( ) ,
129- this . emberCliVersion
129+ this . emberCliVersion ,
130130 ) ;
131131 return validator . validateCommands ( ) ;
132132 } ,
@@ -163,21 +163,21 @@ module.exports = TestCommand.extend({
163163 commandOptions . query = addToQuery (
164164 commandOptions . query ,
165165 'split' ,
166- commandOptions . split
166+ commandOptions . split ,
167167 ) ;
168168
169169 process . env . EMBER_EXAM_SPLIT_COUNT = commandOptions . split ;
170170
171171 // Ignore the partition option when paralleling (we'll fill it in later)
172172 if ( ! commandOptions . parallel && commandOptions . partition ) {
173173 const partitions = combineOptionValueIntoArray (
174- commandOptions . partition
174+ commandOptions . partition ,
175175 ) ;
176176 for ( let i = 0 ; i < partitions . length ; i ++ ) {
177177 commandOptions . query = addToQuery (
178178 commandOptions . query ,
179179 'partition' ,
180- partitions [ i ]
180+ partitions [ i ] ,
181181 ) ;
182182 }
183183 }
@@ -187,44 +187,44 @@ module.exports = TestCommand.extend({
187187 commandOptions . query = addToQuery (
188188 commandOptions . query ,
189189 'modulePath' ,
190- commandOptions . modulePath
190+ commandOptions . modulePath ,
191191 ) ;
192192 }
193193
194194 if ( commandOptions . preserveTestName ) {
195195 commandOptions . query = addToQuery (
196196 commandOptions . query ,
197197 'preserveTestName' ,
198- commandOptions . preserveTestName
198+ commandOptions . preserveTestName ,
199199 ) ;
200200 }
201201
202202 if ( commandOptions . filePath ) {
203203 commandOptions . query = addToQuery (
204204 commandOptions . query ,
205205 'filePath' ,
206- commandOptions . filePath
206+ commandOptions . filePath ,
207207 ) ;
208208 }
209209
210210 if ( commandOptions . loadBalance ) {
211211 commandOptions . query = addToQuery (
212212 commandOptions . query ,
213213 'loadBalance' ,
214- commandOptions . loadBalance
214+ commandOptions . loadBalance ,
215215 ) ;
216216 }
217217
218218 if ( commandOptions . replayBrowser ) {
219219 commandOptions . replayBrowser = combineOptionValueIntoArray (
220- commandOptions . replayBrowser
220+ commandOptions . replayBrowser ,
221221 ) ;
222222 }
223223
224224 if ( typeof commandOptions . random !== 'undefined' ) {
225225 commandOptions . query = this . _randomize (
226226 commandOptions . random ,
227- commandOptions . query
227+ commandOptions . query ,
228228 ) ;
229229 }
230230
@@ -266,14 +266,14 @@ module.exports = TestCommand.extend({
266266 isReplayExecution : this . commands . get ( 'replayExecution' ) ,
267267 isWriteExecutionFile : this . commands . get ( 'writeExecutionFile' ) ,
268268 } ,
269- this . testemEvents
269+ this . testemEvents ,
270270 ) ;
271271 additionalEvents = Object . assign ( additionalEvents , loadBalancingEvents ) ;
272272 }
273273
274274 config . custom_browser_socket_events = Object . assign (
275275 config . custom_browser_socket_events || { } ,
276- additionalEvents
276+ additionalEvents ,
277277 ) ;
278278
279279 if (
@@ -288,7 +288,7 @@ module.exports = TestCommand.extend({
288288 if ( commandOptions . replayExecution ) {
289289 this . testemEvents . setReplayExecutionMap (
290290 commandOptions . replayExecution ,
291- commandOptions . replayBrowser
291+ commandOptions . replayBrowser ,
292292 ) ;
293293 }
294294
@@ -312,7 +312,7 @@ module.exports = TestCommand.extend({
312312 log . info (
313313 `Browser ${ browserId } exiting. [ # of modules in current module queue ${
314314 testemEvents . stateManager . getTestModuleQueue ( ) . length
315- } ]`
315+ } ]`,
316316 ) ;
317317 // if getBrowserId cannot get the browserId
318318 // but the test queue is not empty, report the number of test modules left in the queue
@@ -322,7 +322,7 @@ module.exports = TestCommand.extend({
322322 ui . writeLine (
323323 `[ # of modules in current module queue ${
324324 testemEvents . stateManager . getTestModuleQueue ( ) . length
325- } ]`
325+ } ]`,
326326 ) ;
327327 } else {
328328 throw new Error ( 'testModuleQueue is not set.' ) ;
@@ -343,7 +343,7 @@ module.exports = TestCommand.extend({
343343 launcherId ,
344344 ui ,
345345 commands ,
346- Date . now ( )
346+ Date . now ( ) ,
347347 ) ;
348348 } ;
349349
@@ -370,7 +370,7 @@ module.exports = TestCommand.extend({
370370
371371 return this . _getModuleMetadataAndBrowserExitSocketEvents (
372372 browserExitHandler ,
373- browserTerminationHandler
373+ browserTerminationHandler ,
374374 ) ;
375375 } ,
376376
@@ -382,7 +382,7 @@ module.exports = TestCommand.extend({
382382 */
383383 _getModuleMetadataAndBrowserExitSocketEvents (
384384 browserExitHandler ,
385- browserTerminationHandler
385+ browserTerminationHandler ,
386386 ) {
387387 const events = { } ;
388388 const testemEvents = this . testemEvents ;
@@ -442,7 +442,7 @@ module.exports = TestCommand.extend({
442442 */
443443 _getLoadBalancingBrowserSocketEvents (
444444 { isLoadBalance, isReplayExecution, isWriteExecutionFile } ,
445- testemEvents
445+ testemEvents ,
446446 ) {
447447 const events = { } ;
448448 const ui = this . ui ;
@@ -452,14 +452,14 @@ module.exports = TestCommand.extend({
452452 browserId ,
453453 modules ,
454454 isLoadBalance ,
455- isReplayExecution
455+ isReplayExecution ,
456456 ) ;
457457 } ;
458458 events [ 'testem:next-module-request' ] = function ( browserId ) {
459459 testemEvents . nextModuleResponse (
460460 browserId ,
461461 this . socket ,
462- isWriteExecutionFile
462+ isWriteExecutionFile ,
463463 ) ;
464464 } ;
465465 events [ 'test-result' ] = function ( result ) {
0 commit comments