Skip to content

Commit

Permalink
Fix failing client unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Mar 13, 2024
1 parent 3c030a8 commit 6acbc68
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { shallowMount } from "@vue/test-utils";
import { mount } from "@vue/test-utils";
import { getLocalVue } from "tests/jest/helpers";

import invocationData from "../Workflow/test/json/invocation.json";
Expand All @@ -16,7 +16,7 @@ describe("WorkflowInvocationSummary.vue with terminal invocation", () => {
invocationAndJobTerminal: true,
invocationSchedulingTerminal: true,
};
wrapper = shallowMount(WorkflowInvocationSummary, {
wrapper = mount(WorkflowInvocationSummary, {
propsData,
localVue,
});
Expand All @@ -43,7 +43,7 @@ describe("WorkflowInvocationSummary.vue with invocation scheduling running", ()
invocationAndJobTerminal: false,
invocationSchedulingTerminal: false,
};
wrapper = shallowMount(WorkflowInvocationSummary, {
wrapper = mount(WorkflowInvocationSummary, {
store,
propsData,
localVue,
Expand Down

0 comments on commit 6acbc68

Please sign in to comment.