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