Files
xyflow/cypress/integration/flow/custom-node.spec.js
2020-07-21 11:37:36 +02:00

11 lines
273 B
JavaScript

describe('Custom Node Flow Rendering', () => {
it('renders a flow', () => {
cy.visit('/custom-node');
cy.get('.react-flow__renderer');
cy.get('.react-flow__node').should('have.length', 4);
cy.get('.react-flow__edge').should('have.length', 3);
});
});