13 lines
574 B
JavaScript
13 lines
574 B
JavaScript
|
describe.skip('Item log path', () => {
|
||
|
beforeEach(() => {
|
||
|
const itemId = 1;
|
||
|
cy.viewport(1280, 720);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/item/${itemId}`);
|
||
|
});
|
||
|
it(`should search for the Knowledge artifact to confirm it isn't created yet`, async () => {});
|
||
|
it('should access to the create item view by clicking the create floating button', async () => {});
|
||
|
it('should create the Knowledge artifact item', async () => {});
|
||
|
it('should return to the items index by clicking the return to items button', async () => {});
|
||
|
});
|