2023-01-05 00:48:01 +00:00

13 lines
272 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');
});
});