salix-front/test/cypress/integration/ticket/02_expeditions_and_log.spec.js

10 lines
353 B
JavaScript

describe.skip('Ticket expeditions and log path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it(`should delete a former expedition and confirm the remaining expedition are the expected ones`, async () => {});
});