test: refs #8862 enable test isolation for TicketSale tests
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
parent
4d9912e9b5
commit
d477b6c477
|
@ -53,12 +53,6 @@ export default defineConfig({
|
|||
watchForFileChanges: true,
|
||||
reporter,
|
||||
reporterOptions,
|
||||
setupNodeEvents(on, config) {
|
||||
if (config.specPattern.includes('isolation.spec.js')) {
|
||||
config.testIsolation = true;
|
||||
}
|
||||
return config;
|
||||
},
|
||||
component: {
|
||||
componentFolder: 'src',
|
||||
testFiles: '**/*.spec.js',
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/// <reference types="cypress" />
|
||||
const firstRow = 'tbody > :nth-child(1)';
|
||||
|
||||
describe('TicketSale', () => {
|
||||
describe('TicketSale', { testIsolation: true }, () => {
|
||||
describe.skip('Ticket #23', () => {
|
||||
beforeEach(() => {
|
||||
cy.login('claimManager');
|
||||
|
|
Loading…
Reference in New Issue