10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
|
describe.skip('Order summary path', () => {
|
||
|
beforeEach(() => {
|
||
|
const orderId = 1;
|
||
|
cy.viewport(1280, 720);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/order/${orderId}`);
|
||
|
});
|
||
|
it('should reach the order summary section and check data', async () => {});
|
||
|
});
|