Skip to content

Commit c1b6a3e

Browse files
committed
chore: fix unit tests
1 parent 032add5 commit c1b6a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/services/playground/preview-app-plugins-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ describe("previewAppPluginsService", () => {
109109
const originalGetLocalPlugins = (<any>previewAppPluginsService).getLocalPlugins;
110110
(<any>previewAppPluginsService).getLocalPlugins = () => {
111111
isGetLocalPluginsCalled = true;
112-
return originalGetLocalPlugins.apply(previewAppPluginsService);
112+
return originalGetLocalPlugins.apply(previewAppPluginsService, [projectDir]);
113113
};
114114

115115
const previewLiveSyncData = createPreviewLiveSyncData({ bundle: false });

0 commit comments

Comments
 (0)