Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkit-30 committed Dec 4, 2023
1 parent ed01694 commit 8c10efb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-runner-run.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { join } from 'node:path';
import { describe, it, run } from 'node:test';
import { dot, spec, tap } from 'node:test/reporters';
import assert from 'node:assert';
import testStream from "node:stream"
import testStream from 'node:stream';

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

Expand Down Expand Up @@ -471,7 +471,7 @@ describe('require(\'node:test\').run', { concurrency: true }, () => {
const stream = run({
files: [],
setup: (root) => {
assert(root instanceof testStream)
assert(root instanceof testStream);
},
});
stream.on('test:fail', common.mustNotCall());
Expand Down

0 comments on commit 8c10efb

Please sign in to comment.