13 lines
253 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('Registration Page', () => {
2022-10-31 13:23:49 -07:00
beforeEach(() => {
cy.visit('/c/registration');
2023-01-07 22:27:01 -08:00
cy.waitForPageLoaded();
2022-10-31 13:23:49 -07:00
});
it('registation load', () => {
cy.matchImageSnapshot('registration-page');
});
});