We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dcb473 commit 9e8d28fCopy full SHA for 9e8d28f
lib/watcher.js
@@ -229,7 +229,8 @@ class Watcher {
229
}
230
231
const fileStats = plan.status.stats.byFile.get(evt.testFile);
232
- this.updateExclusivity(evt.testFile, fileStats.declaredTests > fileStats.selectedTests);
+ const ranExclusiveTests = fileStats.selectedTests > 0 && fileStats.declaredTests > fileStats.selectedTests;
233
+ this.updateExclusivity(evt.testFile, ranExclusiveTests);
234
});
235
236
0 commit comments