diff options
Diffstat (limited to 'test/cli/run/run-cjs.test.ts')
-rw-r--r-- | test/cli/run/run-cjs.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli/run/run-cjs.test.ts b/test/cli/run/run-cjs.test.ts index 34c77d106..4c0d37002 100644 --- a/test/cli/run/run-cjs.test.ts +++ b/test/cli/run/run-cjs.test.ts @@ -4,7 +4,7 @@ import { bunEnv, bunExe } from "harness"; import { tmpdir } from "os"; import { join } from "path"; -test.todo("running a commonjs module works", async () => { +test("running a commonjs module works", async () => { const dir = join(realpathSync(tmpdir()), "bun-run-test1"); mkdirSync(dir, { recursive: true }); await Bun.write(join(dir, "index1.js"), "module.exports = 1; console.log('hello world');"); |