12 lines
422 B
JavaScript
12 lines
422 B
JavaScript
describe.skip('Item descriptor path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it('should set the item to inactive', async () => {});
|
|
it('should reload the section and check the inactive icon is visible', async () => {});
|
|
it('should set the item back to active', async () => {});
|
|
});
|