21448: adjusted test specs Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii... 21448-menu-reorder
authorLisa Knox <lisaknox83@gmail.com>
Wed, 3 Apr 2024 15:52:11 +0000 (11:52 -0400)
committerLisa Knox <lisaknox83@gmail.com>
Wed, 3 Apr 2024 15:52:11 +0000 (11:52 -0400)
services/workbench2/cypress/e2e/collection.cy.js
services/workbench2/cypress/e2e/project.cy.js
services/workbench2/src/views-components/context-menu/action-sets/process-resource-action-set.ts
services/workbench2/src/views-components/multiselect-toolbar/ms-process-action-set.ts

index b715cd08b1794213a08058b7a2c1edb6b6bf84f9..38a0c973fd87ee076ed67aac5d8d238afcbaac1d 100644 (file)
@@ -35,8 +35,8 @@ describe("Collection panel tests", function () {
             'Copy link to clipboard',
             'Open with 3rd party client',
             'API Details',
-            'Edit collection',
             'Share',
+            'Edit collection',
             'Move to',
             'Make a copy',
             'Move to trash',
index f16805149a5cd128bf7c8a12e6286dabfe5d8229..43215741f531917629c11c3dda43b531a150eda6 100644 (file)
@@ -224,9 +224,9 @@ describe("Project tests", function () {
             'Copy link to clipboard',
             'Open with 3rd party client',
             'API Details',
+            'Share',
             'New project',
             'Edit project',
-            'Share',
             'Move to',
             'Move to trash',
             'Freeze project',
index 9ea83bb29f49ef2002dee9cd088fb7617852b8e0..0203e3fe23c2541f9b78a9ff0dde08d08f0b0fe6 100644 (file)
@@ -7,8 +7,6 @@ import { ToggleFavoriteAction } from "../actions/favorite-action";
 import { toggleFavorite } from "store/favorites/favorites-actions";
 import {
     RenameIcon,
-    ShareIcon,
-    MoveToIcon,
     DetailsIcon,
     RemoveIcon,
     ReRunProcessIcon,
@@ -18,10 +16,8 @@ import {
     StopIcon,
 } from "components/icon/icon";
 import { favoritePanelActions } from "store/favorite-panel/favorite-panel-action";
-import { openMoveProcessDialog } from "store/processes/process-move-actions";
 import { openProcessUpdateDialog } from "store/processes/process-update-actions";
 import { openCopyProcessDialog } from "store/processes/process-copy-actions";
-import { openSharingDialog } from "store/sharing-dialog/sharing-dialog-actions";
 import { openRemoveProcessDialog } from "store/processes/processes-actions";
 import { toggleDetailsPanel } from "store/details-panel/details-panel-action";
 import { navigateToOutput } from "store/process-panel/process-panel-actions";
@@ -93,6 +89,7 @@ export const processResourceActionSet: ContextMenuActionSet = [
                 dispatch<any>(openProcessUpdateDialog(resources[0]));
             },
         },
+        // removed until auto-move children is implemented
         // {
         //     icon: MoveToIcon,
         //     name: ContextMenuActionNames.MOVE_TO,
index 3af26a338e3c7a681f2c330b6260839ddf0e8edd..73aebe27bcb87ffcf474839923ac94fd8a20beaf 100644 (file)
@@ -2,8 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { MoveToIcon, RemoveIcon, ReRunProcessIcon, OutputIcon, RenameIcon, StopIcon } from "components/icon/icon";
-import { openMoveProcessDialog } from "store/processes/process-move-actions";
+import { RemoveIcon, ReRunProcessIcon, OutputIcon, RenameIcon, StopIcon } from "components/icon/icon";
 import { openCopyProcessDialog } from "store/processes/process-copy-actions";
 import { openRemoveProcessDialog } from "store/processes/processes-actions";
 import { MultiSelectMenuAction, MultiSelectMenuActionSet, msCommonActionSet } from "./ms-menu-actions";