Skip to content

Commit 182b6f1

Browse files
committed
Please eslint
1 parent d6c15fd commit 182b6f1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ async function test(o, name, options, fn) {
2424

2525
tests[line] = { fn, line, name }
2626
promise = promise.then(() => Promise.race([
27-
new Promise((resolve, reject) => fn.timer = setTimeout(() => reject('Timed out'), options.timeout || t.timeout).unref()),
27+
new Promise((resolve, reject) =>
28+
fn.timer = setTimeout(() => reject('Timed out'), options.timeout || t.timeout).unref()
29+
),
2830
fn()
2931
]))
3032
.then((x) => {

0 commit comments

Comments
 (0)