mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
describe('Forgot Password Page', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/c/forgot-password');
|
|
cy.waitForPageLoaded();
|
|
});
|
|
|
|
it('page loaded', () => {
|
|
cy.matchImageSnapshot('forgot-password');
|
|
});
|
|
});
|