test: refs #8862 enable test isolation for InvoiceInDescriptor and VnLog specs
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Benjamin Esteve 2025-04-15 12:12:16 +02:00
parent 2bfd2b09f2
commit 8d6a15eefd
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
describe('InvoiceInDescriptor', () => { describe('InvoiceInDescriptor', { testIsolation: true }, () => {
beforeEach(() => cy.login('administrative')); beforeEach(() => cy.login('administrative'));
describe('more options', () => { describe('more options', () => {

View File

@ -1,4 +1,4 @@
describe('Cmr list', { testIsolation: true }, () => { describe('Cmr list', () => {
const getLinkSelector = (colField) => const getLinkSelector = (colField) =>
`tr:first-child > [data-col-field="${colField}"] > .no-padding > .link`; `tr:first-child > [data-col-field="${colField}"] > .no-padding > .link`;

View File

@ -1,5 +1,5 @@
/// <reference types="cypress" /> /// <reference types="cypress" />
describe('VnLog', () => { describe('VnLog', { testIsolation: true }, () => {
beforeEach(() => { beforeEach(() => {
cy.login('developer'); cy.login('developer');
cy.visit(`/#/claim/${1}/log`); cy.visit(`/#/claim/${1}/log`);