15 lines
757 B
JavaScript
15 lines
757 B
JavaScript
|
describe.skip('Item index path', () => {
|
||
|
beforeEach(() => {
|
||
|
const itemId = 1;
|
||
|
cy.viewport(1280, 720);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/item/${itemId}`);
|
||
|
});
|
||
|
it('should click on the fields to show button to open the list of columns to show', async () => {});
|
||
|
it('should unmark all checkboxes except the first and the last ones', async () => {});
|
||
|
it('should navigate forth and back to see the images column is still visible', async () => {});
|
||
|
it('should check the ids column is not visible', async () => {});
|
||
|
it('should mark all unchecked boxes to leave the index as it was', async () => {});
|
||
|
it('should now navigate forth and back to see the ids column is now visible', async () => {});
|
||
|
});
|