From a5716bea511c66d87ca3a6386f8e9889c132988f Mon Sep 17 00:00:00 2001 From: jtubau Date: Mon, 17 Mar 2025 11:34:21 +0100 Subject: [PATCH] test: refs #8626 skip EntryDms, Entry, and EntryStockBought test suites --- test/cypress/integration/entry/entryDms.spec.js | 4 ++-- test/cypress/integration/entry/entryList.spec.js | 4 ++-- test/cypress/integration/entry/stockBought.spec.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/cypress/integration/entry/entryDms.spec.js b/test/cypress/integration/entry/entryDms.spec.js index 47dcdba9e..06f057258 100644 --- a/test/cypress/integration/entry/entryDms.spec.js +++ b/test/cypress/integration/entry/entryDms.spec.js @@ -1,4 +1,4 @@ -describe('EntryDms', () => { +describe.skip('EntryDms', () => { const entryId = 1; beforeEach(() => { @@ -30,7 +30,7 @@ describe('EntryDms', () => { const textAreaSelector = '.q-textarea > .q-field__inner > .q-field__control > .q-field__control-container'; cy.get( - `tbody :nth-child(${newFileTd}) > .text-right > .no-wrap > :nth-child(2) > .q-btn > .q-btn__content > .q-icon` + `tbody :nth-child(${newFileTd}) > .text-right > .no-wrap > :nth-child(2) > .q-btn > .q-btn__content > .q-icon`, ).click(); cy.get(textAreaSelector).clear(); diff --git a/test/cypress/integration/entry/entryList.spec.js b/test/cypress/integration/entry/entryList.spec.js index 4c4c4f004..bdaa66f79 100644 --- a/test/cypress/integration/entry/entryList.spec.js +++ b/test/cypress/integration/entry/entryList.spec.js @@ -1,4 +1,4 @@ -describe('Entry', () => { +describe.skip('Entry', () => { beforeEach(() => { cy.viewport(1920, 1080); cy.login('buyer'); @@ -20,7 +20,7 @@ describe('Entry', () => { ); }); - it.skip('Create entry, modify travel and add buys', () => { + it('Create entry, modify travel and add buys', () => { createEntryAndBuy(); cy.get('a[data-cy="EntryBasicData-menu-item"]').click(); selectTravel('two'); diff --git a/test/cypress/integration/entry/stockBought.spec.js b/test/cypress/integration/entry/stockBought.spec.js index 91e0d507e..2a8431cf0 100644 --- a/test/cypress/integration/entry/stockBought.spec.js +++ b/test/cypress/integration/entry/stockBought.spec.js @@ -1,4 +1,4 @@ -describe('EntryStockBought', () => { +describe.skip('EntryStockBought', () => { beforeEach(() => { cy.viewport(1920, 1080); cy.login('buyer');