aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/bun-write.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/bun-write.test.js')
-rw-r--r--test/bun.js/bun-write.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/bun-write.test.js b/test/bun.js/bun-write.test.js
index 68e221d51..c324d36a0 100644
--- a/test/bun.js/bun-write.test.js
+++ b/test/bun.js/bun-write.test.js
@@ -142,7 +142,7 @@ it("Bun.file", async () => {
it("Bun.file empty file", async () => {
const file = path.join(import.meta.dir, "emptyFile");
await gcTick();
- const buffer = await Bun.file(file).arrayBuffer()
+ const buffer = await Bun.file(file).arrayBuffer();
expect(buffer.byteLength).toBe(0);
await gcTick();
});