salix-front/test/cypress/integration/ticket/06_basic_data_steps.spec.js

22 lines
1.2 KiB
JavaScript

describe.skip('Ticket Edit basic data path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it(`should confirm the zone autocomplete is disabled unless your role is productionBoss`, async () => {});
it(`should now log as productionBoss to perform the rest of the tests`, async () => {});
it(`should confirm the zone autocomplete is enabled for the role productionBoss`, async () => {});
it(`should check the zone is for Gotham247`, async () => {});
it(`should edit the ticket agency then check there are no zones for it`, async () => {});
it(`should edit the ticket zone then check the agency is for the new zone`, async () => {});
it(`should click next`, async () => {});
it(`should have a price diference`, async () => {});
it(`should select a new reason for the changes made then click on finalize`, async () => {});
it(`should not find ticket`, async () => {});
it(`should split ticket without negatives`, async () => {});
it(`should new ticket have sale of old ticket`, async () => {});
it(`should old ticket have old date and agency`, async () => {});
});