test: refs #7354 #7356 first import missing salix e2e tests
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-12-01 20:56:51 +01:00
parent d5871f3f7d
commit 481d56a6f1
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,20 @@
describe.skip('Zone basic data path', () => {
beforeEach(() => {
const zoneId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/zone/${zoneId}`);
});
it('should reach the basic data section', async () => {});
it('should edit de form and then save', async () => {});
it('should now reload the section', async () => {});
it('should confirm the name was updated', async () => {});
it('should confirm the agency was updated', async () => {});
it('should confirm the max volume was updated', async () => {});
it('should confirm the traveling days were updated', async () => {});
it('should confirm the closing hour was updated', async () => {});
it('should confirm the price was updated', async () => {});
it('should confirm the bonus was updated', async () => {});
it('should confirm the inflation was updated', async () => {});
it('should confirm the volumetric checkbox was checked', async () => {});
});

View File

@ -0,0 +1,10 @@
describe('Zone descriptor path', () => {
beforeEach(() => {
const zoneId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/zone/${zoneId}`);
});
it('should eliminate the zone using the descriptor option', async () => {});
it('should search for the deleted zone to find no results', async () => {});
});