topola-viewer/cypress/e2e/embedded.cy.js
2025-01-11 12:04:20 +01:00

12 lines
328 B
JavaScript

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');
});
});