wisemapping-frontend/packages/webapp/cypress/integration/maps.test.ts
Juan Allo 3d538923a9 Merged in feat/prettier (pull request #3)
adding back semicolons

* adding back semicolons
2021-02-23 07:02:15 +00:00

17 lines
370 B
TypeScript

import MapsPage from '../pageObject/MapsPage';
context('Maps Page', () => {
beforeEach(() => {
cy.visit('http://localhost:3000/c/maps');
});
it('should load the maps page', () => {
MapsPage.isLoaded();
});
it('should open the create dialog', () => {
MapsPage.create();
MapsPage.isCreateDialogVisible();
});
});