test: refs #8717 add integration test for agencyModes
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Jose Antonio Tubau 2025-03-04 12:32:21 +01:00
parent f0e00e1721
commit fa5c1643a4
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
describe('Agency modes', () => {
const name = 'inhouse pickup';
beforeEach(() => {
cy.viewport(1920, 1080);
cy.login('developer');
cy.visit(`/#/route/agency/1/modes`);
});
it('should display the agency modes page', () => {
cy.get('.flex > .title').should('have.text', name);
cy.get('.flex > .q-chip > .q-chip__content').should('have.text', 'ID: 1');
cy.get('.list-items > :nth-child(1) > .value').should('have.text', name);
});
});