aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/process-nexttick.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/process-nexttick.js')
-rw-r--r--test/bun.js/process-nexttick.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bun.js/process-nexttick.js b/test/bun.js/process-nexttick.js
index 337977c0a..ea9d0581e 100644
--- a/test/bun.js/process-nexttick.js
+++ b/test/bun.js/process-nexttick.js
@@ -59,7 +59,7 @@ await new Promise((resolve, reject) => {
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",
);
}
@@ -73,7 +73,7 @@ await new Promise((resolve, reject) => {
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",
);
}
@@ -86,6 +86,6 @@ await new Promise((resolve, reject) => {
resolve(true);
},
12345,
- "hello"
+ "hello",
);
});