describe.skip('Order catalog', () => { beforeEach(() => { const orderId = 1; cy.viewport(1280, 720); cy.login('developer'); cy.visit(`/#/order/${orderId}`); }); it('should open the create new order form', async () => {}); it('should create a new order', async () => {}); it('should add the realm and type filters and obtain results', async () => {}); it('should perfom an "OR" search for the item tag colors silver and brown', async () => {}); it('should perfom an "OR" search for the item tag tallos 2 and 9', async () => {}); it('should perform a general search for category', async () => {}); it('should perfom an "AND" search for the item tag tallos 2', async () => {}); it('should remove the tag filters and have 4 results', async () => {}); it('should search for an item by id', async () => {}); });