mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
fix(merge): blobs before tags API (#29438)
Fixes https://github.com/microsoft/playwright/issues/29434
This commit is contained in:
parent
abd8502490
commit
61b88a851d
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user