diff --git a/packages/integration/src/bitbucketServer/core.test.ts b/packages/integration/src/bitbucketServer/core.test.ts index 5184d14ba7..5ed0780604 100644 --- a/packages/integration/src/bitbucketServer/core.test.ts +++ b/packages/integration/src/bitbucketServer/core.test.ts @@ -42,13 +42,14 @@ describe('bitbucketServer core', () => { username: 'u', password: 'p', }; - const withBasicAuthAndTokenPrecedence: BitbucketServerIntegrationConfig = { - host: '', - apiBaseUrl: '', - token: 'A', - username: 'u', - password: 'p', - }; + const withBasicAuthAndTokenPrecedence: BitbucketServerIntegrationConfig = + { + host: '', + apiBaseUrl: '', + token: 'A', + username: 'u', + password: 'p', + }; const withoutCredentials: BitbucketServerIntegrationConfig = { host: '', apiBaseUrl: '', @@ -62,8 +63,10 @@ describe('bitbucketServer core', () => { .Authorization, ).toEqual('Basic dTpw'); expect( - (getBitbucketServerRequestOptions(withBasicAuthAndTokenPrecedence).headers as any) - .Authorization, + ( + getBitbucketServerRequestOptions(withBasicAuthAndTokenPrecedence) + .headers as any + ).Authorization, ).toEqual('Bearer A'); expect( (getBitbucketServerRequestOptions(withoutCredentials).headers as any)