We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35be7af + 5315dfb commit 8b8f51fCopy full SHA for 8b8f51f
src/test-runs/dto/testRunResult.dto.ts
@@ -9,6 +9,8 @@ export class TestRunResultDto {
9
@ApiProperty()
10
diffName?: string;
11
12
+ baselineName?: string;
13
+ @ApiProperty()
14
diffPercent: number;
15
16
diffTollerancePercent?: number;
@@ -25,6 +27,7 @@ export class TestRunResultDto {
25
27
this.id = testRun.id;
26
28
this.imageName = testRun.imageName;
29
this.diffName = testRun.diffName;
30
+ this.baselineName = testVariation.baselineName;
31
this.diffPercent = testRun.diffPercent;
32
this.diffTollerancePercent = testRun.diffTollerancePercent;
33
this.pixelMisMatchCount = testRun.pixelMisMatchCount;
0 commit comments