From 0d10672d8f6262a55b93cf5d4f3682361ae34650 Mon Sep 17 00:00:00 2001 From: przemyslaw-zan <69513154+przemyslaw-zan@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:42:55 +0200 Subject: [PATCH] Updated message. --- scripts/ci/generate-circleci-configuration.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/ci/generate-circleci-configuration.js b/scripts/ci/generate-circleci-configuration.js index 6065942a9d9..88fdd723e00 100755 --- a/scripts/ci/generate-circleci-configuration.js +++ b/scripts/ci/generate-circleci-configuration.js @@ -58,14 +58,15 @@ const prepareCodeCoverageDirectories = () => ( { const listBatchPackages = packageNames => { const text = [ - `A total of ${ packageNames.length } packages will be ran in this test batch:`, - packageNames.map( packageName => ` - ${ packageName }` ).join( '\\n' ) + `A total of ${ packageNames.length } packages will be tested in this batch:`, + packageNames.map( packageName => ` - ${ packageName }` ).join( '\\n' ), + '' ].join( '\\n\\n' ); return { run: { when: 'always', - name: 'List of packages running in this test batch', + name: 'List packages tested in this batch', command: `printf "${ text }"` } };