Skip to content

Commit

Permalink
Disable Test Isolation
Browse files Browse the repository at this point in the history
By default test isolation will be enabled in Cypress 12 and up, but out tests are not ready to run isolated yet. This should be prioritized in another task.
  • Loading branch information
JacobArrow committed Oct 24, 2024
1 parent 5694fdf commit df12225
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = defineConfig({
e2e: {
supportFile: "cypress/support/index.ts",
specPattern: "./src/@(apps|components)/**/*.test.@(ts|tsx)",
baseUrl: "http://localhost:57021"
baseUrl: "http://localhost:57021",
testIsolation: false
}
});

0 comments on commit df12225

Please sign in to comment.