chore(frontend): Verbose output

This commit is contained in:
Tibo De Peuter 2025-04-17 12:14:21 +02:00
parent 93624cdc6a
commit 5b02cf36c1
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -18,12 +18,12 @@ export async function setup(): Promise<void> {
// Spin up the database
spawn("docker", ["compose", "up", "db", "--detach"], {
cwd: "..",
stdio: "pipe",
stdio: "inherit",
});
backendProcess = spawn("npm", ["run", "dev"], {
cwd: "../backend",
stdio: "pipe",
stdio: "inherit",
});
// Wait until you can curl the backend
@ -37,6 +37,6 @@ export async function teardown(): Promise<void> {
spawn("docker", ["compose", "down"], {
cwd: "..",
stdio: "pipe",
stdio: "inherit"
});
}