Skip to content

Commit

Permalink
Even less mocking
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Aug 15, 2024
1 parent 4e64f78 commit 57f27cf
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/initialize/initializeWithOptions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,30 +67,6 @@ vi.mock("../steps/uninstallPackages.js", () => ({
},
}));

const mockUpdateAllContributorsTable = vi.fn();

vi.mock("../steps/updateAllContributorsTable.js", () => ({
get updateAllContributorsTable() {
return mockUpdateAllContributorsTable;
},
}));

const mockUpdateLocalFiles = vi.fn();

vi.mock("../steps/updateLocalFiles.js", () => ({
get updateLocalFiles() {
return mockUpdateLocalFiles;
},
}));

const mockUpdateReadme = vi.fn();

vi.mock("../steps/updateReadme.js", () => ({
get updateReadme() {
return mockUpdateReadme;
},
}));

const optionsBase = {} as Options;

describe("initializeWithOptions", () => {
Expand Down

0 comments on commit 57f27cf

Please sign in to comment.