salix-front/test/cypress/integration/ticket/10_request.spec.js

17 lines
855 B
JavaScript
Raw Normal View History

describe.skip('Ticket purchase request path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it('should add a new request', async () => {});
it('should have been redirected to the request index', async () => {});
it(`should edit the third request quantity as it's state is still new`, async () => {});
it('should check the new request was added', async () => {});
it(`should check the first request can't be edited as its state is different to new`, async () => {});
it(`should check the second request can't be edited as its state is different to new`, async () => {});
it('should delete the added request', async () => {});
it('should check the request was deleted', async () => {});
});