diff --git a/lib/client.js b/lib/client.js index 59041146..8a4113ee 100644 --- a/lib/client.js +++ b/lib/client.js @@ -263,7 +263,11 @@ class Client { } if (this.uploader.failedUploadsCount) { - console.log(APP_PREFIX, `${this.uploader.failedUploadsCount} artifacts failed to upload`); + console.log( + APP_PREFIX, + chalk.gray('[CLIENT]'), + `${this.uploader.failedUploadsCount} artifacts failed to upload`, + ); } if (this.uploader.isEnabled && this.uploader.skippedUploadsCount) { @@ -271,7 +275,7 @@ class Client { } if (this.uploader.skippedUploadsCount || this.uploader.failedUploadsCount) { - const command = `TESTOMATIO_RUN=${this.runId} npx upload-artifacts`; + const command = `TESTOMATIO_RUN=${this.runId} npx @testomatio/reporter upload-artifacts`; console.log( APP_PREFIX, `Run "${chalk.magenta(command)}" with valid S3 credentials to upload skipped & failed artifacts`,