From 20d0aa1594c1b0b75fb357b8085ec92c93813d95 Mon Sep 17 00:00:00 2001 From: Elizabeth Craig Date: Wed, 18 Oct 2023 00:34:42 -0500 Subject: [PATCH] fix build issue --- src/__tests__/publish/performPublishOverrides.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__tests__/publish/performPublishOverrides.test.ts b/src/__tests__/publish/performPublishOverrides.test.ts index dc9ac7b74..db28a5f99 100644 --- a/src/__tests__/publish/performPublishOverrides.test.ts +++ b/src/__tests__/publish/performPublishOverrides.test.ts @@ -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