Skip to content

Commit c06e9e1

Browse files
test: Fix Lint error
Added eslint-disable-next-line to bypass no-unused-vars check ref: #55964
1 parent b1c8033 commit c06e9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-runner-run.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ describe('require(\'node:test\').run', { concurrency: true }, () => {
4444
stream.on('test:diagnostic', (event) => {
4545
diagnosticEvents.push(event);
4646
});
47-
47+
// eslint-disable-next-line no-unused-vars
4848
for await (const _ of stream);
4949
assert(diagnosticEvents.length > 0, 'No diagnostic events were emitted');
5050
const infoEvent = diagnosticEvents.find((e) => e.level === 'info');

0 commit comments

Comments
 (0)