From 300048c1e1c4e69f45a57e06476cb801ae739654 Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 14 Mar 2025 15:49:32 +0100 Subject: [PATCH] refactor: refs #8581 streamline validation logic in invoiceInDescriptor test --- .../invoiceIn/invoiceInDescriptor.spec.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js index d0f4df2d5..7058e154c 100644 --- a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js @@ -94,16 +94,15 @@ describe('InvoiceInDescriptor', () => { redirect(originalId); cy.clicDescriptorAction(4); - cy.checkQueryParams({ table: { subkey: 'correctedFk', val: originalId } }); - // cy.validateVnTableRows({ - // cols: [ - // { - // name: 'supplierRef', - // val: '1237', - // operation: 'include', - // }, - // ], - // }); + cy.validateVnTableRows({ + cols: [ + { + name: 'supplierRef', + val: '1237', + operation: 'include', + }, + ], + }); }); });