mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
|
import MapsPage from '../pageObject/MapsPage';
|
||
|
|
||
|
context('Forgot Password Page', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.visit('/c/forgot-password');
|
||
|
});
|
||
|
|
||
|
it('page loaded', () => {
|
||
|
cy.matchImageSnapshot('forgot-password');
|
||
|
});
|
||
|
});
|