supplier basicData + e2e #438

Merged
carlosjr merged 6 commits from 2544-supplier_basicData into dev 2020-11-05 13:35:21 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 9b7edb0830 - Show all commits

View File

@ -57,4 +57,14 @@ describe('Supplier basic data path', () => {
expect(result).toEqual('Some notes');
});
it('should navigate to the log section', async() => {
await page.accessToSection('supplier.card.log');
});
it('should check the changes have been recorded', async() => {
const result = await page.waitToGetProperty('#newInstance:nth-child(3)', 'innerText');
expect(result).toEqual('note: Some notes');
});
});