2020-01-14 08:20:14 +00:00
|
|
|
import selectors from '../../helpers/selectors';
|
|
|
|
import getBrowser from '../../helpers/puppeteer';
|
2018-01-12 13:20:28 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client mandate path', () => {
|
2020-01-14 08:20:14 +00:00
|
|
|
let browser;
|
2019-12-31 11:00:16 +00:00
|
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
2020-01-14 08:20:14 +00:00
|
|
|
browser = await getBrowser();
|
|
|
|
page = browser.page;
|
2019-12-31 11:00:16 +00:00
|
|
|
await page.loginAndModule('salesPerson', 'client');
|
|
|
|
await page.accessToSearchResult('Petter Parker');
|
|
|
|
await page.accessToSection('client.card.mandate');
|
|
|
|
});
|
2018-11-20 13:22:00 +00:00
|
|
|
|
2019-12-31 11:00:16 +00:00
|
|
|
afterAll(async() => {
|
2020-01-14 08:40:50 +00:00
|
|
|
await browser.close();
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it('should confirm the client has a mandate of the CORE type', async() => {
|
2019-12-31 11:00:16 +00:00
|
|
|
const result = await page
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientMandate.firstMandateText, 'innerText');
|
2018-11-20 13:22:00 +00:00
|
|
|
|
|
|
|
expect(result).toContain('1');
|
|
|
|
expect(result).toContain('VNL');
|
|
|
|
expect(result).toContain('CORE');
|
2018-01-12 13:20:28 +00:00
|
|
|
});
|
|
|
|
});
|