Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: Fix Lint error
Added eslint-disable-next-line to
bypass no-unused-vars check

ref: #55964
  • Loading branch information
hpatel292-seneca committed Dec 13, 2024
commit c06e9e180d476f59398fc8f326be77773fd16a40
2 changes: 1 addition & 1 deletion test/parallel/test-runner-run.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('require(\'node:test\').run', { concurrency: true }, () => {
stream.on('test:diagnostic', (event) => {
diagnosticEvents.push(event);
});

// eslint-disable-next-line no-unused-vars
for await (const _ of stream);
assert(diagnosticEvents.length > 0, 'No diagnostic events were emitted');
const infoEvent = diagnosticEvents.find((e) => e.level === 'info');
Expand Down