10 lines
353 B
JavaScript
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 () => {});
|
||
|
});
|