Fix a couple of upgrade note typos.
[arvados.git] / services / workbench2 / src / store / run-process-panel / run-process-panel-actions.test.ts
index c615f2162d0de02e1c35ce6b708edf116d85c1b1..cd3413f8b35721368ad609f3ac48969483469018 100644 (file)
@@ -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,11 +118,12 @@ 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",
                 ownerUuid: "zzzzz-tpzed-yid70bw31f51234",
-                priority: 1,
+                priority: 500,
                 properties: {
                     workflowName: "revsort.cwl",
                     template_uuid: "zzzzz-7fd4e-2tlnerdkxnl4fjt",