From 8f4c7027202895f21ecf973c58c2c6f4c349aefe Mon Sep 17 00:00:00 2001 From: Ayush Pahwa Date: Mon, 24 Feb 2025 15:54:02 +0530 Subject: [PATCH] test: fix path of function mock --- .../PluginActionResponse/components/Response/Response.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/PluginActionEditor/components/PluginActionResponse/components/Response/Response.test.tsx b/app/client/src/PluginActionEditor/components/PluginActionResponse/components/Response/Response.test.tsx index 2181237e228..8ed7d89bd75 100644 --- a/app/client/src/PluginActionEditor/components/PluginActionResponse/components/Response/Response.test.tsx +++ b/app/client/src/PluginActionEditor/components/PluginActionResponse/components/Response/Response.test.tsx @@ -29,7 +29,7 @@ const defaultProps = { }; // mock the postrunactionmap -jest.mock("ee/components/PostActionRunComponents", () => ({ +jest.mock("ee/PluginActionEditor/components/PostActionRun", () => ({ PostRunActionComponentMap: { test_modal: () =>
, },