salix/e2e/paths/02-client-module/11_mandate.spec.js

23 lines
737 B
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2018-01-12 13:20:28 +00:00
2018-11-20 13:22:00 +00:00
describe('Client mandate path', () => {
const nightmare = createNightmare();
beforeAll(() => {
nightmare
.loginAndModule('salesPerson', 'client')
.accessToSearchResult('Petter Parker')
.accessToSection('client.card.mandate');
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() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.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
});
});