wisemapping-frontend/packages/webapp/cypress/e2e/login.cy.ts
Paulo Gustavo Veiga 62ea491623 Update cypress
2023-01-07 21:10:13 -08:00

10 lines
164 B
TypeScript

describe('Login Page', () => {
beforeEach(() => {
cy.visit('/c/login');
});
it('page loaded', () => {
cy.matchImageSnapshot('login-page');
});
});