From d783cbda72e56846b6e582f8548701e159666ae4 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Tue, 10 Oct 2023 14:31:35 -0400 Subject: [PATCH] fix: change the chunk log message --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index f916003..3899d99 100644 --- a/src/index.js +++ b/src/index.js @@ -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)