Skip to content

Commit

Permalink
Create login.js to check for fallback login route
Browse files Browse the repository at this point in the history
  • Loading branch information
dobri1408 authored Oct 20, 2024
1 parent 6bffcec commit bc62e95
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/volto/cypress/tests/coresandbox/login.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { ploneAuth } from '../../support/constants';

describe('Login Tests', () => {
beforeEach(() => {
cy.visit('/fallback_login');
});
it('Check login redirect when the login is at another root', function () {
const user = ploneAuth[0];
const password = ploneAuth[1];

cy.get('#login').type(user).should('have.value', user);
cy.get('#password').type(password).should('have.value', password);
cy.get('#login-form-submit').click();
cy.wait(3000);
cy.location('pathname').should('eq', '/');
});
});

0 comments on commit bc62e95

Please sign in to comment.