salix-front/test/cypress/integration/order/05_index.spec.js

11 lines
364 B
JavaScript
Raw Normal View History

describe.skip('Order Index', () => {
beforeEach(() => {
const orderId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/order/${orderId}`);
});
it(`should check the second search result doesn't contain a total of 0€`, async () => {});
it('should search including empty orders', async () => {});
});