Skip to content

Commit

Permalink
chore(blob): add dash to report name (#26335)
Browse files Browse the repository at this point in the history
This regressed in #25017
  • Loading branch information
yury-s authored Aug 8, 2023
1 parent 7516d6a commit 7f1f627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playwright-test/src/reporters/blob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class BlobReporter extends TeleReporterEmitter {
private _computeReportName(config: FullConfig) {
let reportName = 'report';
if (process.env.PWTEST_BLOB_REPORT_NAME)
reportName += sanitizeForFilePath(process.env.PWTEST_BLOB_REPORT_NAME);
reportName += `-${sanitizeForFilePath(process.env.PWTEST_BLOB_REPORT_NAME)}`;
if (config.shard) {
const paddedNumber = `${config.shard.current}`.padStart(`${config.shard.total}`.length, '0');
reportName += `-${paddedNumber}`;
Expand Down

0 comments on commit 7f1f627

Please sign in to comment.