@@ -241,7 +241,6 @@ export function runOneCypressSpec(specName: string, cb: ((err: any) => void)) {
241
241
const browser = process . env . CYPRESS_BROWSER || "electron"
242
242
const context = specName . replace ( "_spec.js" , "" ) + "-" + releaseStage
243
243
qmGit . setGithubStatus ( "pending" , context , `Running ${ context } Cypress tests...` )
244
- console . info ( "Running " + specPath + "..." )
245
244
// noinspection JSUnresolvedFunction
246
245
cypress . run ( {
247
246
browser,
@@ -280,6 +279,7 @@ export function runOneCypressSpec(specName: string, cb: ((err: any) => void)) {
280
279
console . error ( runtimeError )
281
280
process . exit ( 1 )
282
281
} )
282
+ qmLog . logEndOfProcess ( specPath )
283
283
} )
284
284
}
285
285
@@ -305,6 +305,7 @@ function getSpecsPath() {
305
305
}
306
306
307
307
export function runCypressTestsInParallel ( cb ?: ( err : any ) => void ) {
308
+ qmLog . logStartOfProcess ( "runCypressTestsInParallel" )
308
309
deleteSuccessFile ( )
309
310
try {
310
311
copyCypressEnvConfigIfNecessary ( )
@@ -340,13 +341,15 @@ export function runCypressTestsInParallel(cb?: (err: any) => void) {
340
341
if ( cb ) {
341
342
cb ( false )
342
343
}
344
+ qmLog . logEndOfProcess ( "runCypressTestsInParallel" )
343
345
} )
344
346
} )
345
347
} )
346
348
} )
347
349
}
348
350
349
351
export function runCypressTests ( cb ?: ( err : any ) => void ) {
352
+ qmLog . logStartOfProcess ( "runCypressTests" )
350
353
deleteSuccessFile ( )
351
354
try {
352
355
copyCypressEnvConfigIfNecessary ( )
@@ -379,6 +382,7 @@ export function runCypressTests(cb?: (err: any) => void) {
379
382
}
380
383
} )
381
384
}
385
+ qmLog . logEndOfProcess ( "runCypressTests" )
382
386
resolve ( )
383
387
} )
384
388
} ) )
@@ -419,6 +423,7 @@ function deleteLastFailedCypressTest() {
419
423
}
420
424
// tslint:disable-next-line:unified-signatures
421
425
export function runLastFailedCypressTest ( cb : ( err : any ) => void ) {
426
+ qmLog . logStartOfProcess ( "runLastFailedCypressTest" )
422
427
getLastFailedCypressTest ( )
423
428
. then ( function ( name ) {
424
429
if ( ! name ) {
0 commit comments