Skip to content
Snippets Groups Projects
Commit c0c93596 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

refactor: remove null onboarding case

parent 4a4feb35
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,6 @@ const { getPrList } = require('./pr-list');
async function ensureOnboardingPr(config, branches) {
logger.debug('ensureOnboardingPr()');
if (config.repoIsOnboarded) {
return null;
}
logger.trace({ config });
const onboardingBranch = `renovate/configure`;
const onboardingPrTitle = 'Configure Renovate';
......
......@@ -19,10 +19,6 @@ describe('workers/repository/onboarding/pr', () => {
platform.createPr.mockReturnValue({});
});
let createPrBody;
it('returns if onboarded', async () => {
config.repoIsOnboarded = true;
expect(await ensureOnboardingPr(config, [])).toBe(null);
});
it('creates PR', async () => {
await ensureOnboardingPr(config, []);
expect(platform.createPr.mock.calls).toHaveLength(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment