Skip to content

Commit 4e4d621

Browse files
committed
fmt
1 parent 49910c6 commit 4e4d621

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

packages/e2e/bin/run-e2e.cjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

3236
const [, , command] = process.argv;

packages/e2e/src/helper/createEnvVars.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const testEnv: Record<
1919

2020
export 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(

0 commit comments

Comments
 (0)