wisemapping-frontend/packages/webapp/cypress/integration/maps.test.ts

17 lines
370 B
TypeScript
Raw Normal View History

import MapsPage from '../pageObject/MapsPage';
2021-02-23 07:37:29 +01:00
context('Maps Page', () => {
beforeEach(() => {
cy.visit('http://localhost:3000/c/maps');
});
2021-02-23 07:37:29 +01:00
it('should load the maps page', () => {
MapsPage.isLoaded();
});
2021-02-23 07:37:29 +01:00
it('should open the create dialog', () => {
MapsPage.create();
MapsPage.isCreateDialogVisible();
});
});