wisemapping-frontend/packages/webapp/cypress/e2e/forgot-password.ts
2022-10-31 13:48:31 -07:00

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');
});
});