Files
2023-01-03 00:04:38 +00:00

14 lines
383 B
JavaScript

describe('App', () => {
beforeEach(() => {
cy.visitBlankPage();
cy.visit('/');
cy.waitForSplashScreen();
});
it('should render the app', () => {
// dev: picking a random element that should display, in this case the 'File' menu dropdown
// eslint-disable-next-line testing-library/prefer-screen-queries
cy.findByText('File').should('exist');
});
});