From cf6cf11179414d8aae99efdf99ca1224cf17da55 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Thu, 2 Jan 2025 14:52:17 +0100 Subject: [PATCH] test: refs #7134 remove comments --- .../Supplier/SupplierBalance.spec.js | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/test/cypress/integration/Supplier/SupplierBalance.spec.js b/test/cypress/integration/Supplier/SupplierBalance.spec.js index 318ec6db3..63af97877 100644 --- a/test/cypress/integration/Supplier/SupplierBalance.spec.js +++ b/test/cypress/integration/Supplier/SupplierBalance.spec.js @@ -5,10 +5,7 @@ describe('Supplier Balance', () => { cy.visit(`/#/supplier/1/balance`); }); - /* ==== Test Created with Cypress Studio ==== */ it('literal', function () { - /* ==== Generated with Cypress Studio ==== */ - cy.get('.q-page').click(); // cy.get('.bg-header > :nth-child(1)').click(); cy.get('.q-pa-md > .q-drawer-container > .q-drawer > .q-drawer__content').click(); @@ -17,8 +14,6 @@ describe('Supplier Balance', () => { // cy.get('.q-tr > :nth-child(4) > span').should('have.text', '1181.87'); // cy.get('.q-tr > :nth-child(6)').should('have.text', '-3997.99'); // cy.get(':nth-child(5) > span').should('have.text', '1000'); - /* ==== End Cypress Studio ==== */ - /* ==== Generated with Cypress Studio ==== */ // cy.get(':nth-child(1) > :nth-child(2) > .row > span').should( // 'have.text', // 'S/Fra 1235' @@ -35,23 +30,5 @@ describe('Supplier Balance', () => { // 'have.text', // '1' // ); - /* ==== End Cypress Studio ==== */ - /* ==== Generated with Cypress Studio ==== */ - - cy.get('.q-page-sticky > div > .q-btn > .q-btn__content > .q-icon').click(); - cy.fillInForm({ - Date: { val: '01-01-2024', type: 'date' }, - Company: { val: 'VNL', type: 'select' }, - Bank: { val: 1, type: 'select' }, - Amount: { val: 1123, type: 'input' }, - Reference: { val: 'Test', type: 'input' }, - Type: { val: 'issued', type: 'select' }, - Currency: { val: 'Euro', type: 'select' }, - }); - - // cy.dataCy('FormModelPopup_save').click(); - cy.get('.q-mt-lg > .q-btn--standard').click(); - - /* ==== End Cypress Studio ==== */ }); });