66 lines
2.5 KiB
JavaScript
66 lines
2.5 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
describe('Ticket purchase request path', () => {
|
|
const nightmare = createNightmare();
|
|
|
|
beforeAll(() => {
|
|
nightmare
|
|
.loginAndModule('salesPerson', 'ticket')
|
|
.accessToSearchResult('id:16')
|
|
.accessToSection('ticket.card.request.index');
|
|
});
|
|
|
|
it(`should add a new request`, async() => {
|
|
const result = await nightmare
|
|
.waitToClick(selectors.ticketRequests.addRequestButton)
|
|
.wait(selectors.ticketRequests.descriptionInput)
|
|
.type(selectors.ticketRequests.descriptionInput, 'New stuff')
|
|
.type(selectors.ticketRequests.quantityInput, 99)
|
|
.waitToClick(selectors.ticketRequests.atenderSelect)
|
|
.waitToClick(selectors.ticketRequests.atenderSelectSecondOption)
|
|
.type(selectors.ticketRequests.priceInput, 999)
|
|
.waitToClick(selectors.ticketRequests.saveButton)
|
|
.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
|
|
it(`should have been redirected to the request index`, async() => {
|
|
const url = await nightmare
|
|
.waitForURL('/request')
|
|
.parsedUrl();
|
|
|
|
expect(url.hash).toContain('/request');
|
|
});
|
|
|
|
it(`should confirm the new request was added`, async() => {
|
|
const result = await nightmare
|
|
.waitToClick(selectors.ticketBasicData.basicDataButton)
|
|
.wait(selectors.ticketBasicData.clientAutocomplete)
|
|
.waitToClick(selectors.ticketRequests.requestButton)
|
|
.waitToGetProperty(selectors.ticketRequests.firstDescription, 'innerText');
|
|
|
|
expect(result).toEqual('New stuff');
|
|
});
|
|
|
|
it(`should delete the added request`, async() => {
|
|
const result = await nightmare
|
|
.waitToClick(selectors.ticketRequests.firstRemoveRequestButton)
|
|
.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
|
|
it(`should confirm the request was deleted`, async() => {
|
|
const result = await nightmare
|
|
.waitToClick(selectors.ticketBasicData.basicDataButton)
|
|
.wait(selectors.ticketBasicData.clientAutocomplete)
|
|
.waitToClick(selectors.ticketRequests.requestButton)
|
|
.wait(selectors.ticketRequests.addRequestButton)
|
|
.exists(selectors.ticketRequests.request);
|
|
|
|
expect(result).toBeFalsy();
|
|
});
|
|
});
|