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.
1 parent 1c8b8d2 commit 6178439Copy full SHA for 6178439
src/test-runs/dto/testRunResult.dto.ts
@@ -1,14 +1,24 @@
1
import { TestRun, TestStatus, TestVariation } from '@prisma/client';
2
+import { ApiProperty } from '@nestjs/swagger';
3
4
export class TestRunResultDto {
5
+ @ApiProperty()
6
id: string;
7
8
imageName: string;
9
10
diffName?: string;
11
12
diffPercent: number;
13
14
diffTollerancePercent?: number;
15
16
pixelMisMatchCount?: number;
17
18
status: TestStatus;
19
20
url: string;
21
22
merge: boolean;
23
24
constructor(testRun: TestRun, testVariation: TestVariation) {
0 commit comments