12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
describe.skip('Ticket Create notes path', () => {
|
|
beforeEach(() => {
|
|
const ticketId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/ticket/${ticketId}/boxing`);
|
|
});
|
|
it('should create a new note', async () => {});
|
|
it('should confirm the note is the expected one', async () => {});
|
|
it('should delete the note', async () => {});
|
|
});
|