Skip to content

Commit

Permalink
fix: change the chunk log message
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Oct 10, 2023
1 parent e740fc1 commit d783cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function cypressSplit(on, config) {
// console.log(specs)
const splitN = Number(SPLIT)
const splitIndex = Number(SPLIT_INDEX)
console.log('%s split %d of %d', label, splitIndex, splitN)
console.log('%s chunk %d of %d', label, splitIndex + 1, splitN)

debug('get chunk %o', { specs, splitN, splitIndex })
const splitSpecs = getChunk(specs, splitN, splitIndex)
Expand Down

0 comments on commit d783cbd

Please sign in to comment.