fix(merge): blobs before tags API (#29438)

Fixes https://github.com/microsoft/playwright/issues/29434
This commit is contained in:
Max Schmitt 2024-02-09 20:47:38 +01:00 committed by GitHub
parent abd8502490
commit 61b88a851d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ export type JsonTestCase = {
title: string;
location: JsonLocation;
retries: number;
tags: string[];
tags?: string[];
};
export type JsonTestEnd = {
@ -395,7 +395,7 @@ export class TeleReporterReceiver {
test.id = payload.testId;
test.location = this._absoluteLocation(payload.location);
test.retries = payload.retries;
test.tags = payload.tags;
test.tags = payload.tags ?? [];
return test;
}