Skip to content

Commit

Permalink
fix e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 committed Nov 7, 2023
1 parent eec7f5d commit fcca1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/25-stickies.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe('Canvas Actions', () => {
cy.wait('@createWorkflow').then((interception: Interception) => {
const { request } = interception;
const color = request.body?.nodes[0]?.parameters?.color;
expect(color).toBe(1);
expect(color).to.be(1);
});

workflowPage.getters.stickies().should('have.length', 1);
Expand Down

0 comments on commit fcca1fa

Please sign in to comment.