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

13 lines
238 B
TypeScript
Raw Normal View History

2023-01-15 04:31:01 +01:00
/// <reference types="cypress" />
2023-01-08 06:10:13 +01:00
describe('Editor Page', () => {
2022-10-31 21:23:49 +01:00
beforeEach(() => {
2023-01-05 01:48:01 +01:00
cy.visit('/c/maps/11/edit');
2023-01-08 07:27:01 +01:00
cy.waitForEditorLoaded();
2022-10-31 21:23:49 +01:00
});
it('page loaded', () => {
cy.matchImageSnapshot('editor-page');
});
});