Skip to content

Commit 446ad44

Browse files
committed
set test isolation to false
1 parent 84e689e commit 446ad44

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

packages/react-integration/cypress.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export default defineConfig({
77
screenshotOnRunFailure: false,
88
viewportWidth: 1200,
99
viewportHeight: 792,
10-
supportFile: false
10+
supportFile: false,
11+
testIsolation: false
1112
},
1213
reporter: 'junit',
1314
reporterOptions: {

packages/react-integration/cypress/integration/aboutmodal.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
describe('About Modal Demo Test', () => {
2-
before(() => {
2+
it('Navigate to demo section', () => {
33
cy.visit('http://localhost:3000/about-modal-demo-nav-link');
44
});
5+
56
it('Open + close about modal', () => {
67
cy.get('#modal-button').click();
78
cy.get('.pf-v6-c-about-modal-box').should('exist');

packages/react-integration/cypress/integration/accordion.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
describe('Accordion Demo Test', () => {
2-
beforeEach(() => {
2+
it('Navigate to demo section', () => {
33
cy.visit('http://localhost:3000/accordion-demo-nav-link');
44
});
55

packages/react-integration/cypress/integration/alert.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
describe('Alert Demo Test', () => {
2-
beforeEach(() => {
2+
it('Navigate to demo section', () => {
33
cy.visit('http://localhost:3000/alert-demo-nav-link');
44
});
55

packages/react-integration/cypress/integration/alertgroup.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
describe('Alert Group Demo Test', () => {
2-
beforeEach(() => {
2+
it('Navigate to demo section', () => {
33
cy.visit('http://localhost:3000/alert-group-demo-nav-link');
44
});
55

0 commit comments

Comments
 (0)