wisemapping-frontend/packages/webapp/cypress/e2e/editor.cy.ts

11 lines
258 B
TypeScript
Raw Normal View History

2022-10-31 21:23:49 +01:00
context('Editor Page', () => {
beforeEach(() => {
2023-01-05 01:48:01 +01:00
cy.visit('/c/maps/11/edit');
2023-01-07 10:44:43 +01:00
cy.get('[aria-label="vortex-loading"]', { timeout: 120000 }).should('not.exist');
2022-10-31 21:23:49 +01:00
});
it('page loaded', () => {
cy.matchImageSnapshot('editor-page');
});
});