diff options
author | 2023-01-31 17:55:16 -0800 | |
---|---|---|
committer | 2023-01-31 17:55:16 -0800 | |
commit | cc4326cd829decc95d1f1f23998f97705637e04b (patch) | |
tree | 9ccaa829b6d48af521d5e5fcdbabc0dac8d186af /test/bun.js/process-args.test.js | |
parent | c57b37d29f9d04780c7f7917789cf8b424710d23 (diff) | |
download | bun-cc4326cd829decc95d1f1f23998f97705637e04b.tar.gz bun-cc4326cd829decc95d1f1f23998f97705637e04b.tar.zst bun-cc4326cd829decc95d1f1f23998f97705637e04b.zip |
Re-run prettier after changes
Diffstat (limited to 'test/bun.js/process-args.test.js')
-rw-r--r-- | test/bun.js/process-args.test.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/bun.js/process-args.test.js b/test/bun.js/process-args.test.js index 3b5749239..96017266b 100644 --- a/test/bun.js/process-args.test.js +++ b/test/bun.js/process-args.test.js @@ -27,10 +27,10 @@ test("args exclude run", async () => { const t3 = JSON.parse(await new Response(s3).text()); expect(t3[0]).toBe(arg0); expect(t3[1]).toBe(arg1); - const { stdout: s4 } = spawn( - [exe, "run", "print-process-args.js", "arg1", "arg2"], - { cwd: import.meta.dir, env: { BUN_DEBUG_QUIET_LOGS: "1" } }, - ); + const { stdout: s4 } = spawn([exe, "run", "print-process-args.js", "arg1", "arg2"], { + cwd: import.meta.dir, + env: { BUN_DEBUG_QUIET_LOGS: "1" }, + }); const t4 = JSON.parse(await new Response(s4).text()); expect(t4[0]).toBe(arg0); expect(t4[1]).toBe(arg1); |