Skip to content

Commit 8b8f51f

Browse files
authored
Merge pull request #68 from Visual-Regression-Tracker/130-test-run-result
Update testRunResult.dto.ts
2 parents 35be7af + 5315dfb commit 8b8f51f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test-runs/dto/testRunResult.dto.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ export class TestRunResultDto {
99
@ApiProperty()
1010
diffName?: string;
1111
@ApiProperty()
12+
baselineName?: string;
13+
@ApiProperty()
1214
diffPercent: number;
1315
@ApiProperty()
1416
diffTollerancePercent?: number;
@@ -25,6 +27,7 @@ export class TestRunResultDto {
2527
this.id = testRun.id;
2628
this.imageName = testRun.imageName;
2729
this.diffName = testRun.diffName;
30+
this.baselineName = testVariation.baselineName;
2831
this.diffPercent = testRun.diffPercent;
2932
this.diffTollerancePercent = testRun.diffTollerancePercent;
3033
this.pixelMisMatchCount = testRun.pixelMisMatchCount;

0 commit comments

Comments
 (0)