12 lines
236 B
TypeScript
Raw Normal View History

2022-10-31 13:23:49 -07:00
import MapsPage from '../pageObject/MapsPage';
context('Forgot Password Page', () => {
beforeEach(() => {
cy.visit('/c/forgot-password');
});
it('page loaded', () => {
cy.matchImageSnapshot('forgot-password');
});
});