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

View File

@@ -0,0 +1,11 @@
describe('Embedded mode', () => {
it('shows data', () => {
const url = 'https://pewu.github.io/topola-embedded/#' + Cypress.config('baseUrl');
cy.visit(url);
cy.get('iframe')
.its('0.contentDocument.body').should('not.be.empty')
.then(cy.wrap)
.find('#root')
.contains('Bonifacy');
});
});