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

test: use 404/200 for github preset

parent ed0d4184
No related branches found
No related tags found
No related merge requests found
......@@ -43,9 +43,9 @@ describe(getName(__filename), () => {
httpMock
.scope(githubApiHost)
.get(`${basePath}/default.json`)
.reply(500, {})
.reply(404, {})
.get(`${basePath}/renovate.json`)
.reply(500, {});
.reply(200, {});
await expect(
github.getPreset({ packageName: 'some/repo' })
......
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