45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('Ticket expeditions and log path', () => {
|
|
let browser;
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('production', 'ticket');
|
|
await page.accessToSearchResult('1');
|
|
await page.accessToSection('ticket.card.expedition');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
it(`should delete a former expedition and confirm the remaining expedition are the expected ones`, async() => {
|
|
await page.waitToClick(selectors.ticketExpedition.thirdExpeditionRemoveButton);
|
|
await page.waitToClick(selectors.globalItems.acceptButton);
|
|
await page.reloadSection('ticket.card.expedition');
|
|
|
|
await page.waitForSelector(selectors.ticketExpedition.expeditionRow, {});
|
|
const result = await page
|
|
.countElement(selectors.ticketExpedition.expeditionRow);
|
|
|
|
expect(result).toEqual(3);
|
|
});
|
|
|
|
it(`should confirm the expedition deleted is shown now in the ticket log`, async() => {
|
|
await page.accessToSection('ticket.card.log');
|
|
const firstLogEntry = await page
|
|
.waitToGetProperty(selectors.ticketLog.firstLogEntry, 'innerText');
|
|
|
|
const id = await page
|
|
.waitToGetProperty(selectors.ticketLog.id, 'innerText');
|
|
|
|
expect(firstLogEntry).toContain('production');
|
|
expect(firstLogEntry).toContain('Deletes');
|
|
expect(id).toEqual('2');
|
|
});
|
|
});
|