salix-front/test/cypress/integration/item/07_create.spec.js

14 lines
649 B
JavaScript
Raw Normal View History

describe.skip('Item Create', () => {
beforeEach(() => {
const itemId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/item/${itemId}`);
});
it('should access to the create item view by clicking the create floating button', async () => {});
it('should return to the item index by clickig the cancel button', async () => {});
it('should now access to the create item view by clicking the create floating button', async () => {});
it('should throw an error when insert an invalid priority', async () => {});
it('should create the Infinity Gauntlet item', async () => {});
});