Files
xyflow/cypress/integration/flow/basic.spec.js
2019-09-25 21:33:20 +02:00

8 lines
244 B
JavaScript

describe('Basis Flow', function() {
it('renders a flow with some nodes', function() {
cy.visit('/basic.html');
cy.get('.react-graph__node').should('have.length', 3);
cy.get('.react-graph__edge').should('have.length', 2);
});
})