aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-05-10 04:22:03 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-05-10 04:22:03 -0700
commit53a198f2f7508f1573ec0cdcc6da3267f0fa454e (patch)
treef5648af73fd027d4c9df1cbf084d166b32a8d1ca
parent982dc0b441738af6f96969a7d12d906272693a98 (diff)
downloadbun-53a198f2f7508f1573ec0cdcc6da3267f0fa454e.tar.gz
bun-53a198f2f7508f1573ec0cdcc6da3267f0fa454e.tar.zst
bun-53a198f2f7508f1573ec0cdcc6da3267f0fa454e.zip
Update test
Diffstat (limited to '')
-rw-r--r--test/bundler/expectBundled.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bundler/expectBundled.ts b/test/bundler/expectBundled.ts
index 63f9f8e30..c5f41701b 100644
--- a/test/bundler/expectBundled.ts
+++ b/test/bundler/expectBundled.ts
@@ -826,7 +826,7 @@ const build = await Bun.build(options);
if (build.logs) {
throw build.logs;
}
-for (const blob of build.outputs) {
+for (const [key, blob] of build.outputs) {
await Bun.write(path.join(options.outdir, blob.path), blob.result);
}
`;