salix-front/test/cypress/integration/ticket/22_advance.spec.js

10 lines
333 B
JavaScript
Raw Normal View History

describe.skip('Ticket Advance path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it('should search with the required data, check the first ticket and move to the present', async () => {});
});