salix-front/test/cypress/integration/order/03_lines.spec.js

13 lines
512 B
JavaScript
Raw Normal View History

describe.skip('Order lines', () => {
beforeEach(() => {
const orderId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/order/${orderId}`);
});
it('should check the order subtotal', async () => {});
it('should delete the first line in the order', async () => {});
it('should confirm the order subtotal has changed', async () => {});
it('should confirm the whole order and redirect to ticket index filtered by clientFk', async () => {});
});