13 lines
272 B
TypeScript
Raw Normal View History

2022-10-31 13:23:49 -07:00
context('Editor Page', () => {
beforeEach(() => {
2023-01-05 00:48:01 +00:00
cy.visit('/c/maps/11/edit');
2022-10-31 13:23:49 -07:00
});
it('page loaded', () => {
2022-12-22 04:18:10 +00:00
// Wait for load complate ...
cy.get('[aria-label="vortex-loading"]').should('not.exist');
2022-10-31 13:23:49 -07:00
cy.matchImageSnapshot('editor-page');
});
});