This commit is contained in:
parent
7568a5f47f
commit
ba3e961942
|
@ -2831,4 +2831,4 @@ INSERT INTO `vn`.`cplusRectificationType` (`id`, `description`)
|
|||
|
||||
INSERT INTO `vn`.`invoiceInCorrection` (`correctingFk`, `correctedFk`, `cplusRectificationTypeFk`, `cplusInvoiceType477Fk`, `invoiceCorrectionTypeFk`)
|
||||
VALUES
|
||||
(1, 2, 1, 1, 1);
|
||||
(2, 3, 1, 1, 1);
|
||||
|
|
|
@ -9,7 +9,7 @@ describe('InvoiceIn correction path', () => {
|
|||
browser = await getBrowser();
|
||||
page = browser.page;
|
||||
await page.loginAndModule('administrative', 'invoiceIn');
|
||||
await page.accessToSearchResult('1');
|
||||
await page.accessToSearchResult('2');
|
||||
});
|
||||
|
||||
afterAll(async() => {
|
||||
|
@ -21,7 +21,7 @@ describe('InvoiceIn correction path', () => {
|
|||
await page.waitToClick(selectors.invoiceInDescriptor.correctedInvoice);
|
||||
const result = await page.waitToGetProperty(selectors.invoiceInDescriptor.supplierRef, 'innerText');
|
||||
|
||||
expect(result).toContain('1235');
|
||||
expect(result).toContain('1236');
|
||||
await page.waitToClick(selectors.invoiceInDescriptor.originInvoice);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue