mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
13 lines
272 B
TypeScript
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');
|
|
});
|
|
});
|