@@ -241,7 +241,6 @@ export function runOneCypressSpec(specName: string, cb: ((err: any) => void)) {
241241 const browser = process . env . CYPRESS_BROWSER || "electron"
242242 const context = specName . replace ( "_spec.js" , "" ) + "-" + releaseStage
243243 qmGit . setGithubStatus ( "pending" , context , `Running ${ context } Cypress tests...` )
244- console . info ( "Running " + specPath + "..." )
245244 // noinspection JSUnresolvedFunction
246245 cypress . run ( {
247246 browser,
@@ -280,6 +279,7 @@ export function runOneCypressSpec(specName: string, cb: ((err: any) => void)) {
280279 console . error ( runtimeError )
281280 process . exit ( 1 )
282281 } )
282+ qmLog . logEndOfProcess ( specPath )
283283 } )
284284}
285285
@@ -305,6 +305,7 @@ function getSpecsPath() {
305305}
306306
307307export function runCypressTestsInParallel ( cb ?: ( err : any ) => void ) {
308+ qmLog . logStartOfProcess ( "runCypressTestsInParallel" )
308309 deleteSuccessFile ( )
309310 try {
310311 copyCypressEnvConfigIfNecessary ( )
@@ -340,13 +341,15 @@ export function runCypressTestsInParallel(cb?: (err: any) => void) {
340341 if ( cb ) {
341342 cb ( false )
342343 }
344+ qmLog . logEndOfProcess ( "runCypressTestsInParallel" )
343345 } )
344346 } )
345347 } )
346348 } )
347349}
348350
349351export function runCypressTests ( cb ?: ( err : any ) => void ) {
352+ qmLog . logStartOfProcess ( "runCypressTests" )
350353 deleteSuccessFile ( )
351354 try {
352355 copyCypressEnvConfigIfNecessary ( )
@@ -379,6 +382,7 @@ export function runCypressTests(cb?: (err: any) => void) {
379382 }
380383 } )
381384 }
385+ qmLog . logEndOfProcess ( "runCypressTests" )
382386 resolve ( )
383387 } )
384388 } ) )
@@ -419,6 +423,7 @@ function deleteLastFailedCypressTest() {
419423}
420424// tslint:disable-next-line:unified-signatures
421425export function runLastFailedCypressTest ( cb : ( err : any ) => void ) {
426+ qmLog . logStartOfProcess ( "runLastFailedCypressTest" )
422427 getLastFailedCypressTest ( )
423428 . then ( function ( name ) {
424429 if ( ! name ) {
0 commit comments