Skip to content

Commit

Permalink
Updated message.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-zan committed Sep 18, 2024
1 parent 528a641 commit 0d10672
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/ci/generate-circleci-configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }"`
}
};
Expand Down

0 comments on commit 0d10672

Please sign in to comment.