0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-03-15 08:34:54 +00:00
renovatebot_renovate/lib/util/http/jira.spec.ts
2025-03-13 17:52:09 +00:00

25 lines
700 B
TypeScript

import { JiraHttp, setBaseUrl } from './jira';
import * as httpMock from '~test/http-mock';
describe('util/http/jira', () => {
const api = new JiraHttp();
it('throws error if setBaseUrl not called', async () => {
await expect(api.postJson('some-path')).rejects.toThrow('Invalid URL');
});
it('accepts custom baseUrl', async () => {
const siteUrl = 'https://some-site.atlassian.com';
httpMock.scope(siteUrl).post('/some-path').reply(200, {});
setBaseUrl(siteUrl);
expect(await api.postJson('some-path')).toEqual({
authorization: false,
body: {},
headers: {
'content-type': 'application/json',
},
statusCode: 200,
});
});
});