-
Notifications
You must be signed in to change notification settings - Fork 95
test: skip tests #3116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: skip tests #3116
Changes from 4 commits
2af4aa1
77a0c9b
cd03dbc
64f777d
e769b99
3e0ff1f
0c93b4c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -447,6 +447,47 @@ | |
| { | ||
| "file": "test/e2e/app-dir/fallback-shells/fallback-shells.test.ts", | ||
| "reason": "Test relies on x-matched-path response header that is not set in non-minimal mode" | ||
| }, | ||
| { | ||
| "file": "test/e2e/invalid-static-asset-404-pages/invalid-static-asset-404-pages.test.ts", | ||
| "reason": "We are serving default Netlify 404 page instead of relying on next-server to serve 404 (https://github.com/opennextjs/opennextjs-netlify/pull/3100)", | ||
| "tests": [ | ||
| "invalid-static-asset-404-pages should return 404 with plain text when fetching invalid asset path" | ||
| ] | ||
| }, | ||
| { | ||
| "file": "test/e2e/invalid-static-asset-404-pages/invalid-static-asset-404-pages-base-path.test.ts", | ||
| "reason": "We are serving default Netlify 404 page instead of relying on next-server to serve 404 (https://github.com/opennextjs/opennextjs-netlify/pull/3100)", | ||
| "tests": [ | ||
| "invalid-static-asset-404-pages-base-path should return 404 with plain text when fetching invalid asset path" | ||
| ] | ||
| }, | ||
| { | ||
| "file": "test/e2e/invalid-static-asset-404-app/invalid-static-asset-404-app-base-path.test.ts", | ||
| "reason": "We are serving default Netlify 404 page instead of relying on next-server to serve 404 (https://github.com/opennextjs/opennextjs-netlify/pull/3100)", | ||
| "tests": [ | ||
| "invalid-static-asset-404-app-base-path should return 404 with plain text when fetching invalid asset path" | ||
| ] | ||
| }, | ||
| { | ||
| "file": "test/e2e/invalid-static-asset-404-app/invalid-static-asset-404-app.test.ts", | ||
| "reason": "We are serving default Netlify 404 page instead of relying on next-server to serve 404 (https://github.com/opennextjs/opennextjs-netlify/pull/3100)", | ||
| "tests": [ | ||
| "invalid-static-asset-404-app should return 404 with plain text when fetching invalid asset path" | ||
| ] | ||
| }, | ||
pieh marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| { | ||
| "file": "test/e2e/app-dir/rsc-redirect/rsc-redirect.test.ts", | ||
| "reason": "page.waitForLoadState('networkidle') not resolving", | ||
| "tests": [ | ||
| "rsc-redirect /old-about -> /about (ppr: false, segmentCache: true) uses prefetched, redirected URL in the navigation, as opposed to the href in the link", | ||
| "rsc-redirect /old-about -> /about (ppr: false, segmentCache: false) uses prefetched, redirected URL in the navigation, as opposed to the href in the link" | ||
| ] | ||
| }, | ||
|
Comment on lines
+451
to
+458
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test failure or rather timeout is confusing. Test get stuck on usage of which is strongly discouraged:
The test does pass if I replace that with couple seconds of just sleeping, but that's not something we can change so skipping it here. I did try to debug this test on what keeps it stuck, but all the initiated requests finish and I so no network activity that could be keeping it stuck 🤷 |
||
| { | ||
| "file": "test/e2e/app-dir/sub-shell-generation-middleware/sub-shell-generation-middleware.test.ts", | ||
| "reason": "Checking Vercel specific x-vercel-cache header", | ||
| "tests": ["middleware-static-rewrite should eventually result in a cache hit"] | ||
| } | ||
|
Comment on lines
+459
to
463
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was recently added |
||
| ], | ||
| "failures": [ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.