Skip to content

Commit 156dce4

Browse files
author
Przybylski Krzysztof
committed
chore: format
1 parent 65493c8 commit 156dce4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/_data_/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const TEST_PROJECT: Project = {
1313
autoApproveFeature: true,
1414
imageComparisonConfig: '{ "threshold": 0.1, "ignoreAntialiasing": true, "allowDiffDimensions": false }',
1515
imageComparison: ImageComparison.pixelmatch,
16-
protectedBranch: 'release-[0-9]+'
16+
protectedBranch: 'release-[0-9]+',
1717
};
1818

1919
export const TEST_BUILD: Build = {

src/projects/projects.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class ProjectsService {
4848
imageComparisonConfig: projectDto.imageComparisonConfig,
4949
maxBuildAllowed: projectDto.maxBuildAllowed,
5050
maxBranchLifetime: projectDto.maxBranchLifetime,
51-
protectedBranch: projectDto.protectedBranch
51+
protectedBranch: projectDto.protectedBranch,
5252
},
5353
});
5454
}
@@ -64,7 +64,7 @@ export class ProjectsService {
6464
maxBuildAllowed: projectDto.maxBuildAllowed,
6565
maxBranchLifetime: projectDto.maxBranchLifetime,
6666
imageComparisonConfig: projectDto.imageComparisonConfig,
67-
protectedBranch: projectDto.protectedBranch
67+
protectedBranch: projectDto.protectedBranch,
6868
},
6969
});
7070
}

test/projects.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const project: ProjectDto = {
2020
maxBuildAllowed: 0,
2121
maxBranchLifetime: 0,
2222
imageComparisonConfig: '{}',
23-
protectedBranch: null
23+
protectedBranch: null,
2424
};
2525

2626
const projectServiceMock = {

0 commit comments

Comments
 (0)