Skip to content
Snippets Groups Projects
Commit 10a0a692 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

fix: running tests on windows

parent 7b9c95a7
No related branches found
No related tags found
No related merge requests found
......@@ -21,16 +21,22 @@ export async function runApp(
cps.push(
await createProcess(
"npm run dev",
`${cwd}/${name}/backend`,
path.join(cwd, name, "backend"),
port + 1,
),
);
cps.push(
await createProcess("npm run dev", `${cwd}/${name}/frontend`, port),
await createProcess(
"npm run dev",
path.join(cwd, name, "frontend"),
port,
),
);
break;
default:
cps.push(await createProcess("npm run dev", `${cwd}/${name}`, port));
cps.push(
await createProcess("npm run dev", path.join(cwd, name), port),
);
break;
}
} catch (e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment