13 lines
511 B
JavaScript
13 lines
511 B
JavaScript
describe.skip('Item edit tax path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it(`should add the item tax to all countries`, async () => {});
|
|
it(`should confirm the first item tax class was edited`, async () => {});
|
|
it(`should confirm the second item tax class was edited`, async () => {});
|
|
it(`should edit the first class without saving the form`, async () => {});
|
|
});
|