62 lines
2.1 KiB
JavaScript
62 lines
2.1 KiB
JavaScript
|
import selectors from '../../helpers/selectors.js';
|
||
|
import getBrowser from '../../helpers/puppeteer';
|
||
|
|
||
|
describe('Entry descriptor path', () => {
|
||
|
let browser;
|
||
|
let page;
|
||
|
|
||
|
beforeAll(async() => {
|
||
|
browser = await getBrowser();
|
||
|
page = browser.page;
|
||
|
await page.loginAndModule('buyer', 'entry');
|
||
|
await page.accessToSearchResult('2');
|
||
|
});
|
||
|
|
||
|
afterAll(async() => {
|
||
|
await browser.close();
|
||
|
});
|
||
|
|
||
|
it('should reach the second entry summary section', async() => {
|
||
|
let url = await page.expectURL('#!/entry/2/summary');
|
||
|
|
||
|
expect(url).toBe(true);
|
||
|
});
|
||
|
|
||
|
it('should show some entry information', async() => {
|
||
|
const result = await page.waitToGetProperty(selectors.entryDescriptor.agency, 'innerText');
|
||
|
|
||
|
expect(result).toContain('inhouse pickup');
|
||
|
});
|
||
|
|
||
|
it('should click the travels button to be redirected to the travels index filtered by the current agency', async() => {
|
||
|
await page.waitToClick(selectors.entryDescriptor.travelsQuicklink);
|
||
|
const url = await page.expectURL('/travel/index');
|
||
|
const filter = await page.expectURL('agencyFk');
|
||
|
|
||
|
expect(url).toBe(true);
|
||
|
expect(filter).toBe(true);
|
||
|
});
|
||
|
|
||
|
it('should go back to the entry summary', async() => {
|
||
|
await page.waitToClick(selectors.globalItems.homeButton);
|
||
|
await page.selectModule('entry');
|
||
|
await page.accessToSearchResult('2');
|
||
|
let url = await page.expectURL('#!/entry/2/summary');
|
||
|
|
||
|
expect(url).toBe(true);
|
||
|
});
|
||
|
|
||
|
it('should click the entries button to be redirected to the entries index filtered by the current supplier', async() => {
|
||
|
await page.waitToClick(selectors.entryDescriptor.entriesQuicklink);
|
||
|
const url = await page.expectURL('/entry/index');
|
||
|
const supplierFilter = await page.expectURL('supplierFk');
|
||
|
const toFilter = await page.expectURL('to');
|
||
|
const fromFilter = await page.expectURL('from');
|
||
|
|
||
|
expect(url).toBe(true);
|
||
|
expect(supplierFilter).toBe(true);
|
||
|
expect(toFilter).toBe(true);
|
||
|
expect(fromFilter).toBe(true);
|
||
|
});
|
||
|
});
|