diff --git a/__tests__/fixtures/repo.json b/__tests__/fixtures/github-repo.json similarity index 100% rename from __tests__/fixtures/repo.json rename to __tests__/fixtures/github-repo.json diff --git a/__tests__/github.test.ts b/__tests__/github.test.ts index 08c73a4..8880152 100644 --- a/__tests__/github.test.ts +++ b/__tests__/github.test.ts @@ -26,7 +26,7 @@ beforeEach(() => { jest.clearAllMocks(); }); -import repoFixture from './fixtures/repo.json'; +import repoFixture from './fixtures/github-repo.json'; jest.spyOn(GitHub.prototype, 'repoData').mockImplementation((): Promise => { return >(repoFixture as unknown); });