We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bacbb7 commit 563d89fCopy full SHA for 563d89f
packages/e2e/cypress.config.ts
@@ -24,7 +24,8 @@ export default defineConfig({
24
env: {
25
basePath,
26
windowHistorySupport,
27
- supportsShallowRouting: supportsShallowRouting(nextJsVersion)
+ supportsShallowRouting: supportsShallowRouting(nextJsVersion),
28
+ nextJsVersion
29
}
30
31
})
packages/e2e/cypress/e2e/repro-498.cy.js
@@ -1,6 +1,9 @@
1
/// <reference types="cypress" />
2
3
-if (Cypress.env('windowHistorySupport') !== 'true') {
+if (
4
+ Cypress.env('windowHistorySupport') !== 'true' &&
5
+ Cypress.env('nextJsVersion') !== '14.1.0' // See issue #498
6
+) {
7
it('Reproduction for issue #498', () => {
8
cy.config('retries', 0)
9
cy.visit('/app/repro-498')
0 commit comments