20 lines
1.1 KiB
JavaScript
20 lines
1.1 KiB
JavaScript
describe.skip('Ticket Summary path', () => {
|
|
beforeEach(() => {
|
|
const ticketId = 1;
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit(`/#/ticket/${ticketId}/boxing`);
|
|
});
|
|
it('should navigate to the target ticket summary section', async () => {});
|
|
it(`should display details from the ticket and it's client on the top of the header`, async () => {});
|
|
it('should display ticket details', async () => {});
|
|
it('should display delivery details', async () => {});
|
|
it('should display the ticket total', async () => {});
|
|
it('should display the ticket line(s)', async () => {});
|
|
it(`should click on the first sale ID to make the item descriptor visible`, async () => {});
|
|
it(`should check the url for the item diary link of the descriptor is for the right item id`, async () => {});
|
|
it('should log in as production then navigate to the summary of the same ticket', async () => {});
|
|
it('should set the ticket state to OK using the top right button', async () => {});
|
|
it('should confirm the ticket state was updated', async () => {});
|
|
});
|