mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
const {
|
|
prAlreadyExisted,
|
|
} = require('../../../lib/workers/branch/check-existing');
|
|
const defaultConfig = require('../../../lib/config/defaults').getConfig();
|
|
|
|
describe('workers/branch/check-existing', () => {
|
|
describe('prAlreadyExisted', () => {
|
|
let config;
|
|
beforeEach(() => {
|
|
config = {
|
|
...defaultConfig,
|
|
branchName: 'some-branch',
|
|
prTitle: 'some-title',
|
|
};
|
|
jest.resetAllMocks();
|
|
});
|
|
it('returns false if recreating closed PRs', async () => {
|
|
config.recreateClosed = true;
|
|
expect(await prAlreadyExisted(config)).toBe(null);
|
|
expect(platform.findPr.mock.calls.length).toBe(0);
|
|
});
|
|
it('returns false if both checks miss', async () => {
|
|
config.recreatedClosed = true;
|
|
expect(await prAlreadyExisted(config)).toBe(null);
|
|
expect(platform.findPr.mock.calls.length).toBe(2);
|
|
});
|
|
it('returns true if first check hits', async () => {
|
|
platform.findPr.mockReturnValueOnce({ number: 12 });
|
|
expect(await prAlreadyExisted(config)).toEqual({ number: 12 });
|
|
expect(platform.findPr.mock.calls.length).toBe(1);
|
|
});
|
|
it('returns true if second check hits', async () => {
|
|
platform.findPr.mockReturnValueOnce(null);
|
|
platform.findPr.mockReturnValueOnce({ number: 13 });
|
|
expect(await prAlreadyExisted(config)).toEqual({ number: 13 });
|
|
expect(platform.findPr.mock.calls.length).toBe(2);
|
|
});
|
|
});
|
|
});
|