14 lines
649 B
JavaScript
14 lines
649 B
JavaScript
|
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 () => {});
|
||
|
});
|