11 lines
420 B
JavaScript
11 lines
420 B
JavaScript
describe.skip('Item Create barcodes path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it(`should click create a new code and delete a former one`, async () => {});
|
|
it(`should confirm the barcode 5 is created and it is now the third barcode as the first was deleted`, async () => {});
|
|
});
|