Ran npx prettier --write .

It looks better now.

Signed-off-by: matt-200 <123186429+matt-200@users.noreply.github.com>
This commit is contained in:
matt-200
2023-01-25 18:59:20 -06:00
committed by GitHub
parent 21a7b9fd83
commit 09547ac964
@@ -281,14 +281,16 @@ describe('replaceReadme', () => {
describe('buildEncodedUrl', () => {
it('should not encode the colon between host and port', async () => {
const result = await buildEncodedUrl(
const result = await buildEncodedUrl(
'tfs.myorg.com:8443',
'org',
'project',
'repo',
'path'
'path',
);
expect(result).toBe(
'https://tfs.myorg.com:8443/org/project/_git/repo?path=path',
);
expect(result).toBe('https://tfs.myorg.com:8443/org/project/_git/repo?path=path');
});
});