Files
xyflow/cypress/integration/flow/stress.spec.js
T
2020-07-21 12:50:53 +02:00

12 lines
294 B
JavaScript

describe('Stress Flow Rendering', () => {
before(() => {
cy.visit('/stress');
});
it('renders initial flow', () => {
cy.get('.react-flow__renderer');
cy.get('.react-flow__node').should('have.length', 100);
cy.get('.react-flow__edge').should('have.length', 99);
});
});