diff options
author | 2023-03-01 14:31:28 -0800 | |
---|---|---|
committer | 2023-03-01 14:31:56 -0800 | |
commit | ef569610071e37e763579b2408e549e09cf1119a (patch) | |
tree | ee0e70f76f9630aaa728bc16297e171add66dea9 /packages/bun-test/src/runner.ts | |
parent | ff51a253e2897fd7a622ffa0f31e17e1e408caec (diff) | |
download | bun-ef569610071e37e763579b2408e549e09cf1119a.tar.gz bun-ef569610071e37e763579b2408e549e09cf1119a.tar.zst bun-ef569610071e37e763579b2408e549e09cf1119a.zip |
Run tests in CI for bun-linux-aarch64
Diffstat (limited to 'packages/bun-test/src/runner.ts')
-rw-r--r-- | packages/bun-test/src/runner.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/bun-test/src/runner.ts b/packages/bun-test/src/runner.ts index 256d0c87f..f3add7385 100644 --- a/packages/bun-test/src/runner.ts +++ b/packages/bun-test/src/runner.ts @@ -22,9 +22,13 @@ async function runTest(path: string): Promise<void> { const name = path.replace(cwd, "").slice(1); const runner = await spawn({ cwd, - cmd: ["bun", "wiptest", path], + cmd: ["bun", "test", path], stdout: "pipe", stderr: "pipe", + env: { + ...process.env, + FORCE_COLOR: "1", + } }); const exitCode = await Promise.race([ new Promise((resolve) => { |