salix-front/test/cypress/integration/ticket/18_index_payout.spec.js

12 lines
535 B
JavaScript

describe.skip('Ticket index payout path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it('should check the second ticket from a client and 1 of another', async () => {});
it('should search for tickets of the same client then open the payout form', async () => {});
it('should fill the company and bank to perform a payout and check a new balance line was entered', async () => {});
});