11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
describe.skip('Item Edit basic data path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it(`should edit the item basic data and confirm the item data was edited`, async () => {});
|
|
it(`should create a new intrastat and save it`, async () => {});
|
|
});
|