From 9925dc01094c00f3363425ad579c4476fca0a5d4 Mon Sep 17 00:00:00 2001 From: yellowlighthouse <37584318+yellowlighthouse@users.noreply.github.com> Date: Fri, 12 Sep 2025 22:38:45 +0300 Subject: [PATCH] fix: fullpage state name --- lib/tests-tree-builder/base.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tests-tree-builder/base.ts b/lib/tests-tree-builder/base.ts index f0a152b7a..cd93c61a3 100644 --- a/lib/tests-tree-builder/base.ts +++ b/lib/tests-tree-builder/base.ts @@ -133,8 +133,8 @@ export class BaseTestsTreeBuilder { const browserId = this._buildId(suiteId, browserName); const testResultId = this._buildId(browserId, attempt.toString()); const imageIds = imagesInfo - .map((image: ImageInfoFull, i: number) => - this._buildId(testResultId, (image as {stateName?: string}).stateName || `${image.status}_${i}`)); + .map((image: ImageInfoFull) => + this._buildId(testResultId, (image as {stateName?: string}).stateName || '__testplane_full_page__')); this._addSuites(testPath, browserId); this._addBrowser({id: browserId, parentId: suiteId, name: browserName, version: browserVersion}, testResultId, attempt);