File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,14 @@ function createLocalWrapper() {
2323 fs . copyFileSync ( BABEL_CONFIG_SRC , babelDest ) ;
2424 console . log ( `✅ Created ${ path . relative ( cwd , babelDest ) } ` ) ;
2525 } else {
26- console . warn ( `⚠️ ${ path . relative ( cwd , babelDest ) } already exists, skipping` ) ;
26+ console . warn (
27+ `⚠️ ${ path . relative ( cwd , babelDest ) } already exists, skipping`
28+ ) ;
2729 }
2830
29- console . log ( '✨ Local scaffolding complete. Point Jest at jest.e2e.local.cjs to run from this project.' ) ;
31+ console . log (
32+ '✨ Local scaffolding complete. Point Jest at jest.e2e.local.cjs to run from this project.'
33+ ) ;
3034}
3135
3236const [ , , command ] = process . argv ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const testEnv: Record<
1919
2020export function createEnvVars ( ) : EnvVars {
2121 // 1. Get network string
22- const network = process . env [ 'NETWORK' ] ! ! ;
22+ const network = process . env [ 'NETWORK' ] ! ! ;
2323
2424 if ( ! network || ! supportedNetworks . includes ( network as any ) ) {
2525 throw new Error (
You can’t perform that action at this time.
0 commit comments