wisemapping-frontend/packages/webapp/cypress/e2e/registration.cy.ts

11 lines
218 B
TypeScript
Raw Normal View History

2023-01-08 06:10:13 +01:00
describe('Registration Page', () => {
2022-10-31 21:23:49 +01:00
beforeEach(() => {
cy.visit('/c/registration');
2023-01-08 07:27:01 +01:00
cy.waitForPageLoaded();
2022-10-31 21:23:49 +01:00
});
it('registation load', () => {
cy.matchImageSnapshot('registration-page');
});
});