mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
3d538923a9
adding back semicolons * adding back semicolons
17 lines
370 B
TypeScript
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();
|
|
});
|
|
});
|