Skip to content

Commit 1b41941

Browse files
committed
Add newlines to run-npm-package-tests
1 parent 254199e commit 1b41941

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/run-npm-package-tests.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ async function main() {
248248
? 'No packages available to test'
249249
: 'No changed packages detected, use --force to test all packages',
250250
)
251+
logger.log('')
251252
process.exitCode = 0
252253
return
253254
}
@@ -256,7 +257,7 @@ async function main() {
256257
}
257258

258259
if (packagesToTest.length === 0) {
259-
logger.warn('No packages to test')
260+
logger.warn('No packages to test\n')
260261
process.exitCode = 0
261262
return
262263
}
@@ -293,7 +294,7 @@ async function main() {
293294
}
294295

295296
logger.success(
296-
`Passed: ${passed.length}/${totalTested} (${results.length} total)`,
297+
`Passed: ${passed.length}/${totalTested} (${results.length} total)\n`,
297298
)
298299

299300
// Never clean up the cache directory - it's persistent by design.

0 commit comments

Comments
 (0)