Skip to content

Commit fb9eaeb

Browse files
author
aehnh
committed
prettier
1 parent 57925a5 commit fb9eaeb

1 file changed

Lines changed: 9 additions & 13 deletions

File tree

packages/tests-e2e/src/complete/utils/playground.ts

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,15 @@ export async function spawnPlaygroundNew(projectId: string): Promise<{
4141
const port = await getPort();
4242

4343
const playgroundDir = getPlaygroundDir();
44-
const server = spawn(
45-
'npm',
46-
getPlaygroundArgs(port),
47-
{
48-
cwd: playgroundDir,
49-
env: {
50-
...process.env,
51-
VITE_CORBADO_PROJECT_ID_ManualTesting: projectId,
52-
},
53-
stdio: 'inherit',
54-
shell: true,
55-
}
56-
);
44+
const server = spawn('npm', getPlaygroundArgs(port), {
45+
cwd: playgroundDir,
46+
env: {
47+
...process.env,
48+
VITE_CORBADO_PROJECT_ID_ManualTesting: projectId,
49+
},
50+
stdio: 'inherit',
51+
shell: true,
52+
});
5753
const ok = await waitPort({ host: 'localhost', port, timeout: 15_000, output: 'silent' });
5854
if (!ok) {
5955
server.kill();

0 commit comments

Comments
 (0)