test(props): add tests for basic props

This commit is contained in:
moklick
2022-08-23 18:10:12 +02:00
parent ecf0476939
commit 43ec2b5552
19 changed files with 1262 additions and 131 deletions
+1 -3
View File
@@ -11,12 +11,10 @@ describe('Minimap Testing', () => {
it('has same number of nodes as the pane', () => {
const paneNodes = Cypress.$('.react-flow__node').length;
cy.wait(100);
cy.wait(200);
const minimapNodes = Cypress.$('.react-flow__minimap-node').length;
cy.wait(100);
expect(paneNodes).equal(minimapNodes);
});