13 lines
449 B
JavaScript
13 lines
449 B
JavaScript
describe.skip('Order edit basic data path', () => {
|
|
beforeEach(() => {
|
|
const orderId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/order/${orderId}`);
|
|
});
|
|
describe('when confirmed order', () => {});
|
|
it('should not be able to change the client', async () => {});
|
|
describe('when new order', () => {});
|
|
it('should create an order and edit its basic data', async () => {});
|
|
});
|