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:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user