salix-front/test/cypress/integration/ticket/09_weekly.spec.js

23 lines
1.4 KiB
JavaScript

describe.skip('Ticket descriptor path', () => {
beforeEach(() => {
const ticketId = 1;
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/ticket/${ticketId}/boxing`);
});
it('should count the amount of tickets in the turns section', async () => {});
it('should go back to the ticket index then search and access a ticket summary', async () => {});
it('should add the ticket to thursday turn using the descriptor more menu', async () => {});
it('should again click on the Tickets button of the top bar menu', async () => {});
it('should confirm the ticket 33 was added to thursday', async () => {});
it('should click on the Tickets button of the top bar menu once more', async () => {});
it('should now search for the ticket 33', async () => {});
it('should add the ticket to saturday turn using the descriptor more menu', async () => {});
it('should click on the Tickets button of the top bar menu once again', async () => {});
it('should confirm the ticket 33 was added on saturday', async () => {});
it('should now search for the weekly ticket 33', async () => {});
it('should delete the weekly ticket 33', async () => {});
it('should confirm the sixth weekly ticket was deleted', async () => {});
it('should update the agency then remove it afterwards', async () => {});
});