Files
topola-viewer/cypress/integration/intro.spec.js
2020-02-14 23:47:14 +01:00

13 lines
271 B
JavaScript

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