mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
describe('Registration Page', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/c/registration');
|
|
cy.waitForPageLoaded();
|
|
});
|
|
|
|
it('registation load', () => {
|
|
cy.matchImageSnapshot('registration-page');
|
|
});
|
|
});
|