From 579cf0315852b07f5526cf0dcf500ed7ccca202d Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Tue, 18 Jun 2024 17:13:57 -0700 Subject: [PATCH] Fix diff in test runner --- test/runner.node.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner.node.mjs b/test/runner.node.mjs index b8401ebaf8..493db012cd 100755 --- a/test/runner.node.mjs +++ b/test/runner.node.mjs @@ -137,7 +137,7 @@ async function runTests(target, filters) { for (const path of [cwd, testsPath]) { const title = relative(cwd, join(path, "package.json")).replace(/\\/g, "/"); - // await runTest(title, async () => spawnBunInstall(execPath, { cwd: path })); + await runTest(title, async () => spawnBunInstall(execPath, { cwd: path })); } if (results.every(({ ok }) => ok)) {