Skip to content

Commit

Permalink
remove test counting i elements
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Jan 20, 2025
1 parent e1c9e7f commit 9d0ce93
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions client/src/components/Workflow/Editor/Node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,17 @@ describe("Node", () => {
},
});
await flushPromises();

// fa-wrench is the tool icon ...
expect(wrapper.findAll(".fa-wrench")).toHaveLength(1);
const toolLinks = wrapper.findAll("i");
expect(toolLinks.length).toBe(3);
await wrapper.setProps({
step: { label: "step label", type: "subworkflow", inputs: [], outputs: [], position: { top: 0, left: 0 } },
});

// fa-sitemap is the subworkflow icon ...
expect(wrapper.findAll(".fa-sitemap")).toHaveLength(1);
expect(wrapper.findAll(".fa-wrench")).toHaveLength(0);
const subworkflowLinks = wrapper.findAll("i");
expect(subworkflowLinks.length).toBe(2);

const workflowTitle = wrapper.find(".node-title");
expect(workflowTitle.text()).toBe("step label");
});
Expand Down

0 comments on commit 9d0ce93

Please sign in to comment.