Skip to content

Commit 8c10efb

Browse files
committed
fix lint
1 parent ed01694 commit 8c10efb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-runner-run.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join } from 'node:path';
44
import { describe, it, run } from 'node:test';
55
import { dot, spec, tap } from 'node:test/reporters';
66
import assert from 'node:assert';
7-
import testStream from "node:stream"
7+
import testStream from 'node:stream';
88

99
const testFixtures = fixtures.path('test-runner');
1010

@@ -471,7 +471,7 @@ describe('require(\'node:test\').run', { concurrency: true }, () => {
471471
const stream = run({
472472
files: [],
473473
setup: (root) => {
474-
assert(root instanceof testStream)
474+
assert(root instanceof testStream);
475475
},
476476
});
477477
stream.on('test:fail', common.mustNotCall());

0 commit comments

Comments
 (0)