Skip to content

Commit 563d89f

Browse files
committed
test: Also ignore 14.1.0 (latest) for this test
1 parent 6bacbb7 commit 563d89f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/e2e/cypress.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export default defineConfig({
2424
env: {
2525
basePath,
2626
windowHistorySupport,
27-
supportsShallowRouting: supportsShallowRouting(nextJsVersion)
27+
supportsShallowRouting: supportsShallowRouting(nextJsVersion),
28+
nextJsVersion
2829
}
2930
}
3031
})

packages/e2e/cypress/e2e/repro-498.cy.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/// <reference types="cypress" />
22

3-
if (Cypress.env('windowHistorySupport') !== 'true') {
3+
if (
4+
Cypress.env('windowHistorySupport') !== 'true' &&
5+
Cypress.env('nextJsVersion') !== '14.1.0' // See issue #498
6+
) {
47
it('Reproduction for issue #498', () => {
58
cy.config('retries', 0)
69
cy.visit('/app/repro-498')

0 commit comments

Comments
 (0)