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