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