From 5315dfbc5d62973bae6ffd050e7dcc67475320a9 Mon Sep 17 00:00:00 2001 From: Pavel Strunkin Date: Thu, 8 Oct 2020 21:49:59 +0300 Subject: [PATCH] Update testRunResult.dto.ts --- src/test-runs/dto/testRunResult.dto.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test-runs/dto/testRunResult.dto.ts b/src/test-runs/dto/testRunResult.dto.ts index bd20b4b6..54c840fa 100644 --- a/src/test-runs/dto/testRunResult.dto.ts +++ b/src/test-runs/dto/testRunResult.dto.ts @@ -9,6 +9,8 @@ export class TestRunResultDto { @ApiProperty() diffName?: string; @ApiProperty() + baselineName?: string; + @ApiProperty() diffPercent: number; @ApiProperty() diffTollerancePercent?: number; @@ -25,6 +27,7 @@ export class TestRunResultDto { this.id = testRun.id; this.imageName = testRun.imageName; this.diffName = testRun.diffName; + this.baselineName = testVariation.baselineName; this.diffPercent = testRun.diffPercent; this.diffTollerancePercent = testRun.diffTollerancePercent; this.pixelMisMatchCount = testRun.pixelMisMatchCount;