diff options
author | 2023-07-24 19:11:33 -0700 | |
---|---|---|
committer | 2023-07-24 19:11:53 -0700 | |
commit | e1a59d355a780c43861b9d02863bde5e5abfd659 (patch) | |
tree | 465c3c81c9c6b6afc52695004e7de6509ecfc858 | |
parent | e154763e4df422a33c66208717748827a1164de7 (diff) | |
download | bun-e1a59d355a780c43861b9d02863bde5e5abfd659.tar.gz bun-e1a59d355a780c43861b9d02863bde5e5abfd659.tar.zst bun-e1a59d355a780c43861b9d02863bde5e5abfd659.zip |
slow test is allowed to be slow
-rw-r--r-- | test/js/bun/spawn/spawn.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/bun/spawn/spawn.test.ts b/test/js/bun/spawn/spawn.test.ts index db4cc6613..897a16635 100644 --- a/test/js/bun/spawn/spawn.test.ts +++ b/test/js/bun/spawn/spawn.test.ts @@ -160,7 +160,7 @@ for (let [gcTick, label] of [ expect(exitCode1).toBe(0); expect(exitCode2).toBe(1); } - }); + }, 20_000); // FIXME: fix the assertion failure it.skip("Uint8Array works as stdout", () => { |