Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ecraig12345 committed Oct 18, 2023
1 parent 0ac74de commit 20d0aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/publish/performPublishOverrides.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('performPublishOverrides', () => {
...json,
}));

readJSONSync.mockImplementation((path: string) => {
readJSONSync.mockImplementation(path => {
for (const pkg of Object.values(packageInfos)) {
if (path === pkg.packageJsonPath) {
// performPublishConfigOverrides mutates the packageJson, so we need to clone it to
Expand Down

0 comments on commit 20d0aa1

Please sign in to comment.