15 lines
657 B
JavaScript
15 lines
657 B
JavaScript
|
describe.skip('Item Create botanical path', () => {
|
||
|
beforeEach(() => {
|
||
|
const itemId = 1;
|
||
|
cy.viewport(1280, 720);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/item/${itemId}`);
|
||
|
});
|
||
|
it(`should create a new botanical for the item`, async () => {});
|
||
|
it(`should confirm the Genus for the item was created`, async () => {});
|
||
|
it(`should confirm the Species for the item was created`, async () => {});
|
||
|
it(`should edit botanical for the item`, async () => {});
|
||
|
it(`should confirm the Genus for the item was edited`, async () => {});
|
||
|
it(`should confirm the Species for the item was edited`, async () => {});
|
||
|
});
|