salix-front/test/cypress/integration/ticket/17_log.spec.js

11 lines
360 B
JavaScript
Raw Normal View History

describe.skip('Ticket log path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it('should navigate to the target ticket notes section', async () => {});
it('should create a new note for the test', async () => {});
});