wisemapping-frontend/packages/webapp/cypress/e2e/forgot-password.ts

10 lines
189 B
TypeScript
Raw Normal View History

2023-01-08 06:10:13 +01:00
describe('Forgot Password Page', () => {
2022-10-31 21:23:49 +01:00
beforeEach(() => {
cy.visit('/c/forgot-password');
});
it('page loaded', () => {
cy.matchImageSnapshot('forgot-password');
});
});