Skip to content

Commit e8c9050

Browse files
committed
format
1 parent 4816e9f commit e8c9050

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/main.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,8 @@ describe('Test correct encoding of badge URL', () => {
599599
it('should URL encode the job ID and repository with special characters', () => {
600600
process.env.GITHUB_WORKFLOW = 'test/job@workflow';
601601
process.env.GITHUB_REPOSITORY = 'test/repo@special';
602-
const expectedBadge: string = '![](https://example.jfrog.io/ui/api/v1/u?s=1&m=1&job_id=test%2Fjob%40workflow&run_id=123&git_repo=test%2Frepo%40special)';
602+
const expectedBadge: string =
603+
'![](https://example.jfrog.io/ui/api/v1/u?s=1&m=1&job_id=test%2Fjob%40workflow&run_id=123&git_repo=test%2Frepo%40special)';
603604
expect(Utils.getUsageBadge()).toBe(expectedBadge);
604605
});
605606

@@ -610,4 +611,4 @@ describe('Test correct encoding of badge URL', () => {
610611
expect(Utils.getUsageBadge()).toBe(expectedBadge);
611612
});
612613
});
613-
});
614+
});

0 commit comments

Comments
 (0)