13 lines
508 B
JavaScript
13 lines
508 B
JavaScript
describe.skip('Item fixed prices path', () => {
|
|
beforeEach(() => {
|
|
const itemId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/item/${itemId}`);
|
|
});
|
|
it('should filter using all the fields', async () => {});
|
|
it('should click on the add new fixed price button', async () => {});
|
|
it('should fill the fixed price data', async () => {});
|
|
it('should reload the section and check the created price has the expected ID', async () => {});
|
|
});
|