Files
xyflow/cypress/integration/flow/stress.spec.js
T
2019-10-28 18:57:29 +01:00

11 lines
268 B
JavaScript

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