#4074 useAcls #584

Merged
jorgep merged 30 commits from 4074-useAcls into dev 2024-09-10 11:50:45 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 04aa96b798 - Show all commits

View File

@ -53,8 +53,8 @@ describe('Login', () => {
});
it(`should get redirected to dashboard since employee can't create tickets`, () => {
cy.visit('/#/ticket/create', { failOnStatusCode: false });

Habían puesto que solo podía el role developer. Esto en Salix no estaba.

Habían puesto que solo podía el role developer. Esto en Salix no estaba.
cy.url().should('contain', '/#/login?redirect=/ticket/create');
cy.visit('/#/account/ldap', { failOnStatusCode: false });
jorgep marked this conversation as resolved
Review

Hermos cambiado la URL pero no hemos cambiado el it del test...

Hermos cambiado la URL pero no hemos cambiado el it del test...
cy.url().should('contain', '/#/login?redirect=/account/ldap');
cy.get('input[aria-label="Username"]').type('employee');
cy.get('input[aria-label="Password"]').type('nightmare');
cy.get('button[type="submit"]').click();