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

13 lines
252 B
JavaScript

describe('Intro page', () => {
beforeEach(() => {
cy.visit('/');
});
it('displays intro text', () => {
cy.contains('Examples');
});
it('displays menu', () => {
cy.contains('Open file');
cy.contains('Load from URL');
});
});