salix-front/test/cypress/integration/item/01_summary.spec.js

26 lines
1.6 KiB
JavaScript

describe.skip('Item summary path', () => {
beforeEach(() => {
const itemId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/item/${itemId}`);
});
it('should search for an item', async () => {});
it(`should check the item summary preview shows fields from basic data`, async () => {});
it(`should check the item summary preview shows fields from tags`, async () => {});
it(`should check the item summary preview shows fields from botanical`, async () => {});
it(`should check the item summary preview shows fields from barcode`, async () => {});
it(`should close the summary popup`, async () => {});
it('should search for other item', async () => {});
it(`should now check the item summary preview shows fields from basic data`, async () => {});
it(`should now check the item summary preview shows fields from tags`, async () => {});
it(`should now check the item summary preview shows fields from botanical`, async () => {});
it(`should now close the summary popup`, async () => {});
it(`should navigate to one of the items detailed section`, async () => {});
it(`should check the descritor edit button is not visible for employee`, async () => {});
it(`should check the item summary shows fields from basic data section`, async () => {});
it(`should check the item summary shows fields from tags section`, async () => {});
it(`should check the item summary shows fields from botanical section`, async () => {});
it(`should check the item summary shows fields from barcodes section`, async () => {});
});