From 286e805ef36befa0aa300af25247622451a3a9cb Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Mon, 8 Jul 2024 15:11:07 +0200 Subject: [PATCH] Drop unnecessary test This is now tested in the PersistentTaskProgressMonitorAlert component --- .../Invocation/Export/InvocationExportPluginCard.test.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/client/src/components/Workflow/Invocation/Export/InvocationExportPluginCard.test.ts b/client/src/components/Workflow/Invocation/Export/InvocationExportPluginCard.test.ts index 4ee9832c2b50..a55c978a82f0 100644 --- a/client/src/components/Workflow/Invocation/Export/InvocationExportPluginCard.test.ts +++ b/client/src/components/Workflow/Invocation/Export/InvocationExportPluginCard.test.ts @@ -74,13 +74,6 @@ describe("InvocationExportPluginCard", () => { expect(remoteExportButton.exists()).toBeTruthy(); }); - it("should generate the expected download URL for the invocation", () => { - const downloadButton = wrapper.find(".download-button"); - expect(downloadButton.attributes("downloadendpoint")).toBe( - `/api/invocations/${FAKE_INVOCATION_ID}/prepare_store_download` - ); - }); - it("should display a button for each additional action", () => { const actionButtons = wrapper.findAll(".action-button"); expect(actionButtons.length).toBe(FAKE_EXPORT_PLUGIN.additionalActions.length);