Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
il3ven committed May 8, 2022
1 parent 1c2b914 commit ff58807
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/run-status.js
Expand Up @@ -125,7 +125,11 @@ export default class RunStatus extends Emittery {
case 'timeout':
event.pendingTests = this.pendingTests;
this.pendingTests = new Map();
event.pendingTests.forEach((testsInFile) => stats.timeouts += testsInFile.size);
for (const [_, testsInFile] of event.pendingTests.entries()) {
console.log(testsInFile, _)
stats.timeouts += testsInFile.size;
}

break;
case 'interrupt':
event.pendingTests = this.pendingTests;
Expand Down

0 comments on commit ff58807

Please sign in to comment.