Fix bug in test runner

This commit is contained in:
Jarred Sumner
2023-03-08 00:18:08 -08:00
parent f3cd2be68c
commit 7bb4d31f43

View File

@@ -55,7 +55,7 @@ async function runTest(path) {
stdout,
stderr,
status: exitCode,
} = spawnSync("bun", ["test", basename(path)], {
} = spawnSync("bun", ["test", path], {
stdio: ["ignore", "pipe", "pipe"],
timeout: 10_000,
env: {