78 lines
2.7 KiB
JavaScript
78 lines
2.7 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
describe('Ticket List sale path', () => {
|
|
const nightmare = createNightmare();
|
|
|
|
beforeAll(() => {
|
|
return nightmare
|
|
.loginAndModule('employee', 'ticket');
|
|
});
|
|
|
|
it('should search for the ticket 8', async () => {
|
|
const result = await nightmare
|
|
.wait(selectors.ticketsIndex.searchTicketInput)
|
|
.type(selectors.ticketsIndex.searchTicketInput, 'id:8')
|
|
.click(selectors.ticketsIndex.searchButton)
|
|
.waitForNumberOfElements(selectors.ticketsIndex.searchResult, 1)
|
|
.countElement(selectors.ticketsIndex.searchResult);
|
|
|
|
expect(result).toEqual(1);
|
|
});
|
|
|
|
it(`should click on the search result to access to the ticket's sale`, async () => {
|
|
const url = await nightmare
|
|
.waitForTextInElement(selectors.ticketsIndex.searchResult, 'address 24')
|
|
.waitToClick(selectors.ticketsIndex.searchResult)
|
|
.waitToClick(selectors.ticketSales.saleButton)
|
|
.waitForURL('/sale')
|
|
.parsedUrl();
|
|
|
|
expect(url.hash).toContain('/sale');
|
|
});
|
|
|
|
it('should confirm the first ticket sale contains the colour', async () => {
|
|
const value = await nightmare
|
|
.waitToGetProperty(selectors.ticketSales.firstSaleColour, 'innerText');
|
|
|
|
expect(value).toContain('Red');
|
|
});
|
|
|
|
it('should confirm the first ticket sale contains the lenght', async () => {
|
|
const value = await nightmare
|
|
.waitToGetProperty(selectors.ticketSales.firstSaleText, 'innerText');
|
|
|
|
expect(value).toContain('3');
|
|
});
|
|
|
|
it('should confirm the first ticket sale contains the price', async () => {
|
|
const value = await nightmare
|
|
.waitToGetProperty(selectors.ticketSales.firstSalePrice, 'innerText');
|
|
|
|
expect(value).toContain('1.30');
|
|
});
|
|
|
|
it('should confirm the first ticket sale contains the discount', async () => {
|
|
const value = await nightmare
|
|
.waitToGetProperty(selectors.ticketSales.firstSaleDiscount, 'innerText');
|
|
|
|
expect(value).toContain('0 %');
|
|
});
|
|
|
|
it('should confirm the first ticket sale contains the total import', async () => {
|
|
const value = await nightmare
|
|
.waitToGetProperty(selectors.ticketSales.firstSaleImport, 'innerText');
|
|
|
|
expect(value).toContain('19.50');
|
|
});
|
|
|
|
it('should navigate to the catalog by pressing the new item button', async () => {
|
|
const url = await nightmare
|
|
.waitToClick(selectors.ticketSales.newItemButton)
|
|
.waitForURL('/catalog')
|
|
.parsedUrl();
|
|
|
|
expect(url.hash).toContain('/catalog');
|
|
});
|
|
});
|