wisemapping-frontend/packages/webapp/cypress/e2e/editor.cy.ts
2022-12-22 04:18:10 +00:00

13 lines
271 B
TypeScript

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