13 lines
252 B
TypeScript
Raw Normal View History

2023-01-14 19:31:01 -08:00
/// <reference types="cypress" />
2023-01-07 21:10:13 -08:00
describe('Forgot Password Page', () => {
2022-10-31 13:23:49 -07:00
beforeEach(() => {
cy.visit('/c/forgot-password');
2023-01-07 22:27:01 -08:00
cy.waitForPageLoaded();
2022-10-31 13:23:49 -07:00
});
it('page loaded', () => {
cy.matchImageSnapshot('forgot-password');
});
});