wisemapping-frontend/packages/webapp/cypress/e2e/editor.cy.ts
Paulo Gustavo Veiga 122f3c9c11 Update snpashots.
2023-01-07 01:44:43 -08:00

11 lines
258 B
TypeScript

context('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');
});
});