13 lines
554 B
JavaScript
13 lines
554 B
JavaScript
describe.skip('Item request path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it('should reach the item request section', async () => {});
|
|
it('should fill the id and quantity then check the concept was updated', async () => {});
|
|
it('should check the status of the request should now be accepted', async () => {});
|
|
it('should now click on the second declain request icon then type the reason', async () => {});
|
|
});
|