13 lines
512 B
JavaScript
13 lines
512 B
JavaScript
|
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 () => {});
|
||
|
});
|