aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/process-nexttick.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/process-nexttick.test.js')
-rw-r--r--test/bun.js/process-nexttick.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bun.js/process-nexttick.test.js b/test/bun.js/process-nexttick.test.js
index f6d2b7663..a1b1b84b0 100644
--- a/test/bun.js/process-nexttick.test.js
+++ b/test/bun.js/process-nexttick.test.js
@@ -61,7 +61,7 @@ it("process.nextTick", async () => {
if (!passed)
throw new Error(
- "queueMicrotask should throw a TypeError if the argument is not a function"
+ "queueMicrotask should throw a TypeError if the argument is not a function",
);
}
@@ -75,7 +75,7 @@ it("process.nextTick", async () => {
if (!passed)
throw new Error(
- "queueMicrotask should throw a TypeError if the argument is empty"
+ "queueMicrotask should throw a TypeError if the argument is empty",
);
}
});
@@ -89,7 +89,7 @@ it("process.nextTick 2 args", async () => {
resolve(true);
},
12345,
- "hello"
+ "hello",
);
});
});