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;