X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6d1c41d6fd83824669cd1a6d714ea6da1ae7ab4c..HEAD:/services/workbench2/src/store/run-process-panel/run-process-panel-actions.test.ts diff --git a/services/workbench2/src/store/run-process-panel/run-process-panel-actions.test.ts b/services/workbench2/src/store/run-process-panel/run-process-panel-actions.test.ts index 77c8c4a7e2..cd3413f8b3 100644 --- a/services/workbench2/src/store/run-process-panel/run-process-panel-actions.test.ts +++ b/services/workbench2/src/store/run-process-panel/run-process-panel-actions.test.ts @@ -10,6 +10,7 @@ jest.mock("../navigation/navigation-action", () => ({ jest.mock("models/process", () => ({ createWorkflowMounts: jest.fn(), + createWorkflowSecretMounts: jest.fn(), })); jest.mock("redux-form", () => ({ @@ -105,8 +106,10 @@ describe("run-process-panel-actions", () => { expect(services.containerRequestService.create).toHaveBeenCalledWith({ command: [ "arvados-cwl-runner", - "--api=containers", "--local", + "--api=containers", + "--no-log-timestamps", + "--disable-color", "--project-uuid=zzzzz-tpzed-yid70bw31f51234", "/var/lib/cwl/workflow.json#main", "/var/lib/cwl/cwl.input.json", @@ -115,6 +118,7 @@ describe("run-process-panel-actions", () => { cwd: "/var/spool/cwl", description: "basicFormTestDescription", mounts: undefined, + secret_mounts: undefined, name: "basicFormTestName", outputName: "Output from basicFormTestName", outputPath: "/var/spool/cwl",