Files
topola-viewer/cypress/integration/intro.spec.js
2020-04-03 18:46:20 +02:00

13 lines
266 B
JavaScript

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