You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.reportStream.write(`# Ran ${currentFileCount} test ${plur('file',currentFileCount)} out of ${this.stats.files} for job ${currentIndex+1} of ${totalRuns}`+os.EOL+os.EOL);
Maybe on other CI, the first index is 0?
The text was updated successfully, but these errors were encountered:
I try to use parallel CI job with GitLab CI, the first index in GitLab CI is 1.
the currentIndex is 1 for the first chunk and chunkd starts with 0.
It should be:
ava/lib/api.js
Line 141 in 1222ce9
And in the reporter, it should be
currentIndex
instead ofcurrentIndex + 1
ava/lib/reporters/tap.js
Line 88 in 78cfaa1
Maybe on other CI, the first index is 0?
The text was updated successfully, but these errors were encountered: