19 lines
1.0 KiB
JavaScript
19 lines
1.0 KiB
JavaScript
describe.skip('Ticket List sale path', () => {
|
|
beforeEach(() => {
|
|
const ticketId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/ticket/${ticketId}/boxing`);
|
|
});
|
|
it('should confirm the first ticket sale contains the colour tag', async () => {});
|
|
it('should confirm the first sale contains the price', async () => {});
|
|
it('should confirm the first sale contains the discount', async () => {});
|
|
it('should confirm the first sale contains the total import', async () => {});
|
|
it('should add an empty item to the sale list', async () => {});
|
|
it('should select a valid item to be added as the second item in the sales list', async () => {});
|
|
it('should update the description of the new sale', async () => {});
|
|
it('should add a third empty item to the sale list', async () => {});
|
|
it('should select the 2nd and 3th item and delete both', async () => {});
|
|
it(`should verify there's only 1 single line remaining`, async () => {});
|
|
});
|