aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/performance.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/performance.test.js')
-rw-r--r--test/bun.js/performance.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/performance.test.js b/test/bun.js/performance.test.js
index 0ff75b945..51479209c 100644
--- a/test/bun.js/performance.test.js
+++ b/test/bun.js/performance.test.js
@@ -19,6 +19,6 @@ it("performance.now() should be monotonic", () => {
it("performance.timeOrigin + performance.now() should be similar to Date.now()", () => {
expect(
- Math.abs(performance.timeOrigin + performance.now() - Date.now()) < 1000
+ Math.abs(performance.timeOrigin + performance.now() - Date.now()) < 1000,
).toBe(true);
});