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