diff options
author | 2023-04-12 22:30:55 -0400 | |
---|---|---|
committer | 2023-04-12 19:30:55 -0700 | |
commit | 1cc4eb0e3f77850d5d39262ce19e7168fdd76f88 (patch) | |
tree | c1898c5d93581ee4ff32aa43d043018801fd5523 | |
parent | a03ee1826252517b1c802f7afb845378368b4e0b (diff) | |
download | bun-1cc4eb0e3f77850d5d39262ce19e7168fdd76f88.tar.gz bun-1cc4eb0e3f77850d5d39262ce19e7168fdd76f88.tar.zst bun-1cc4eb0e3f77850d5d39262ce19e7168fdd76f88.zip |
fix expectBundled precheck (#2641)
-rw-r--r-- | test/bundler/expectBundled.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bundler/expectBundled.ts b/test/bundler/expectBundled.ts index a1aa71c1e..d75f4ebe1 100644 --- a/test/bundler/expectBundled.ts +++ b/test/bundler/expectBundled.ts @@ -885,7 +885,7 @@ export function itBundled(id: string, opts: BundlerTestInput): BundlerTestRef { return ref; } else if (!FILTER) { try { - expectBundled(id, opts); + expectBundled(id, opts, true); } catch (error) { it.skip(id, () => {}); return ref; |