File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,7 @@ async function runPlaywright(
277
277
278
278
// Copy our runner's playwright config to a custom location in order to
279
279
// preserve the customer's config which we may want to load in the future
280
+ console . log ( 'Copying Playwright config file.' ) ;
280
281
const configFileName = ( await utils . isEsmProject ( runCfg . projectPath ) )
281
282
? 'sauce.config.mjs'
282
283
: 'sauce.config.cjs' ;
@@ -288,6 +289,7 @@ async function runPlaywright(
288
289
config : configFile ,
289
290
} ;
290
291
292
+ console . log ( 'Constructing Playwright command arguments.' ) ;
291
293
const playwrightBin = path . join (
292
294
__dirname ,
293
295
'..' ,
@@ -368,6 +370,7 @@ async function runPlaywright(
368
370
} ;
369
371
370
372
// runCfg.path must be set for prepareNpmEnv to find node_modules. :(
373
+ console . log ( 'Preparing NPM environment.' ) ;
371
374
await prepareNpmEnv ( runCfg , nodeCtx ) ;
372
375
373
376
// Run suite preExecs
Original file line number Diff line number Diff line change
1
+ console . log ( 'Top of sauce.config.cjs' ) ;
2
+
1
3
const process = require ( 'process' ) ;
2
4
const _ = require ( 'lodash' ) ;
3
5
const fs = require ( 'fs' ) ;
You can’t perform that action at this time.
0 commit comments