13 lines
271 B
TypeScript
Raw Normal View History

2022-10-31 13:23:49 -07:00
context('Editor Page', () => {
beforeEach(() => {
cy.visit('c/maps/11/edit');
});
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');
});
});