wisemapping-frontend/packages/webapp/cypress/e2e/registration.cy.ts
2023-01-07 23:14:54 -08:00

11 lines
218 B
TypeScript

describe('Registration Page', () => {
beforeEach(() => {
cy.visit('/c/registration');
cy.waitForPageLoaded();
});
it('registation load', () => {
cy.matchImageSnapshot('registration-page');
});
});