test: refs #8717 add integration test for agencyModes
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
parent
f0e00e1721
commit
fa5c1643a4
|
@ -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);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue