10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
describe.skip('Ticket Future path', () => {
|
|
beforeEach(() => {
|
|
const ticketId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/ticket/${ticketId}/boxing`);
|
|
});
|
|
it('should search with required data, check three last tickets and move to the future', async () => {});
|
|
});
|