upgrade cypress version

This commit is contained in:
Przemek Więch
2025-01-11 12:04:20 +01:00
parent 0f9a46a7b0
commit 9cadda886e
8 changed files with 650 additions and 1827 deletions

12
cypress/e2e/search.cy.js Normal file
View File

@@ -0,0 +1,12 @@
describe('Chart view', () => {
beforeEach(() => {
cy.visit('/view?handleCors=false&url=https%3A%2F%2Fraw.githubusercontent.com%2FPeWu%2Ftopola%2Fmaster%2Fdemo%2Fdata%2Ffamily.ged');
});
it('Search works', () => {
cy.contains('Chike').should('not.exist');
cy.get('#search').type('chik');
cy.contains('Chike');
cy.get('#search').type('{enter}');
cy.get('#content').contains('Chike');
});
});