mirror of
https://github.com/PeWu/topola-viewer.git
synced 2025-12-23 18:50:04 +00:00
12 lines
328 B
JavaScript
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');
|
|
});
|
|
});
|