13 lines
494 B
JavaScript
13 lines
494 B
JavaScript
describe.skip('Ticket DMS path', () => {
|
|
beforeEach(() => {
|
|
const ticketId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/ticket/${ticketId}/boxing`);
|
|
});
|
|
it('should import a document', async () => {});
|
|
it(`should check there's a listed document now`, async () => {});
|
|
it('should attempt to import an existing document on this ticket', async () => {});
|
|
it(`should check there's still one document`, async () => {});
|
|
});
|