2018-02-15 11:28:05 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2018-10-24 08:57:14 +00:00
|
|
|
import createNightmare from '../../helpers/nightmare';
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
describe('Client Add credit path', () => {
|
|
|
|
const nightmare = createNightmare();
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
2018-12-02 23:45:34 +00:00
|
|
|
.loginAndModule('salesAssistant', 'client')
|
|
|
|
.accessToSearchResult('Hank Pym')
|
|
|
|
.accessToSection('client.card.credit.index');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it(`should click on the add credit button`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const url = await nightmare
|
|
|
|
.waitToClick(selectors.clientCredit.addCreditFloatButton)
|
|
|
|
.waitForURL('/credit/create')
|
2018-11-22 14:44:33 +00:00
|
|
|
.parsedUrl();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-22 14:44:33 +00:00
|
|
|
expect(url.hash).toContain('/credit/create');
|
2018-11-20 13:22:00 +00:00
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it(`should edit the credit`, async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
|
|
|
.clearInput(selectors.clientCredit.creditInput)
|
2019-01-23 14:33:25 +00:00
|
|
|
.write(selectors.clientCredit.creditInput, 999)
|
2019-01-23 15:00:56 +00:00
|
|
|
.waitToClick(selectors.clientCredit.saveButton)
|
2018-11-20 13:22:00 +00:00
|
|
|
.waitForLastSnackbar();
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
2018-01-08 07:12:39 +00:00
|
|
|
|
2019-01-16 14:02:50 +00:00
|
|
|
it('should confirm the credit was updated', async() => {
|
2018-11-20 13:22:00 +00:00
|
|
|
const result = await nightmare
|
2018-11-22 14:44:33 +00:00
|
|
|
.waitToGetProperty(selectors.clientCredit.firstCreditText, 'innerText');
|
2018-10-30 07:51:18 +00:00
|
|
|
|
2018-11-20 13:22:00 +00:00
|
|
|
expect(result).toContain(999);
|
|
|
|
expect(result).toContain('salesAssistant');
|
2018-01-08 07:12:39 +00:00
|
|
|
});
|
|
|
|
});
|