wisemapping-frontend/packages/webapp/cypress/e2e/editor.cy.ts
Paulo Gustavo Veiga 62ea491623 Update cypress
2023-01-07 21:10:13 -08:00

11 lines
259 B
TypeScript

describe('Editor Page', () => {
beforeEach(() => {
cy.visit('/c/maps/11/edit');
cy.get('[aria-label="vortex-loading"]', { timeout: 120000 }).should('not.exist');
});
it('page loaded', () => {
cy.matchImageSnapshot('editor-page');
});
});