salix/e2e/paths/02-client-module/08_add_notes.spec.js

39 lines
1.2 KiB
JavaScript
Raw Normal View History

import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
describe('Client Add notes path', () => {
const nightmare = createNightmare();
2017-12-15 09:07:52 +00:00
2018-11-20 13:22:00 +00:00
beforeAll(() => {
nightmare
.loginAndModule('employee', 'client')
.accessToSearchResult('Bruce Banner')
.accessToSection('client.card.note.index');
2018-11-20 13:22:00 +00:00
});
2017-12-15 09:07:52 +00:00
2019-01-16 14:02:50 +00:00
it(`should click on the add note button`, async() => {
2018-11-20 13:22:00 +00:00
const url = await nightmare
.waitToClick(selectors.clientNotes.addNoteFloatButton)
.waitForURL('/note/create')
.parsedUrl();
2018-10-30 07:51:18 +00:00
expect(url.hash).toContain('/note/create');
2018-11-20 13:22:00 +00:00
});
2017-12-15 09:07:52 +00:00
2019-01-16 14:02:50 +00:00
it(`should create a note`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
2019-01-23 14:33:25 +00:00
.write(selectors.clientNotes.noteInput, 'Meeting with Black Widow 21st 9am')
2019-01-23 15:00:56 +00:00
.waitToClick(selectors.clientNotes.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!');
});
2017-12-15 09:07:52 +00:00
2019-01-16 14:02:50 +00:00
it('should confirm the note was created', async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.waitToGetProperty(selectors.clientNotes.firstNoteText, 'innerText');
2018-10-30 07:51:18 +00:00
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Meeting with Black Widow 21st 9am');
2017-12-15 09:07:52 +00:00
});
});