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

13 lines
272 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');
2022-10-31 21:23:49 +01:00
});
it('page loaded', () => {
2022-12-22 05:18:10 +01:00
// Wait for load complate ...
cy.get('[aria-label="vortex-loading"]').should('not.exist');
2022-10-31 21:23:49 +01:00
cy.matchImageSnapshot('editor-page');
});
});