rsnext/test/integration
JJ Kasper 6f9c4720f9
[Breaking] Disable automatic static generation for route handlers (#65825)
## Background

Currently route handlers will be attempted to statically generate the
same as normal pages in app router. If a route handler accessed dynamic
data such as `cookies()`, `headers()`, `req.url`, or similar we would
bail from this static generation but this didn't handle the case where
you would do data fetching via a non-fetch based library e.g. `redis` or
even using `Date.now()` or `Math.random()` so users would expect these
to be run every request like normal API endpoints but they would be
static so wouldn't be executed again after a build.


## New Behavior

As discussed this disable the default static generation handling for
route handlers as we've seen this confuse our users since in most cases
when creating a route handler you are handling dynamic workloads. This
doesn't remove the ability to static generate route handlers though as
you can still manually specify:

If you specify `export const revalidate = 1` we will still bail if
dynamic data is accessed to prevent accidental `revalidate` configuring
but this can be avoided via `force-static` being used as well.
 
```js
export const dynamic = 'force-static'
// or
export const dynamic = 'error'
// or
export const revalidate = false
// or
export const revalidate = 1 // value great than 0
// or 
export const generateStaticParams() {}
```

---------

Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com>
2024-05-20 16:25:02 -07:00
..
404-page Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
404-page-app Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
404-page-custom-error Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
404-page-ssg Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
500-page Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
absolute-assetprefix chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
amp-export-validation Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
amphtml Support React 19 in App and Pages router (#65058) 2024-05-07 18:18:32 +02:00
amphtml-custom-optimizer Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
amphtml-custom-validator Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
amphtml-fragment-style Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
amphtml-ssg Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
api-body-parser Remove render workers in favor of esm loader (#54813) 2023-09-11 22:17:52 +02:00
api-catch-all Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
api-support Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
app-aspath
app-config-asset-prefix Add hasRedbox fix (#60522) 2024-01-15 09:36:44 +01:00
app-dir-export [Breaking] Disable automatic static generation for route handlers (#65825) 2024-05-20 16:25:02 -07:00
app-document chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
app-document-add-hmr
app-document-import-order Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
app-document-remove-hmr
app-document-style-fragment Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
app-dynamic-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
app-functional
app-tree Support React 19 in App and Pages router (#65058) 2024-05-07 18:18:32 +02:00
app-types Improve initial setup with new App Router TypeScript project (#64826) 2024-04-26 18:19:50 +02:00
auto-export Support React 19 in App and Pages router (#65058) 2024-05-07 18:18:32 +02:00
auto-export-error-bail Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
auto-export-query-error Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
babel chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
babel-custom Skip Babel tests for Turbopack (#56091) 2023-09-27 16:12:43 +02:00
babel-next-image fix: babel usage with next/image (#61835) 2024-02-08 18:16:30 -05:00
basepath-root-catch-all Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
bigint Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
broken-webpack-plugin Skip webpack specific tests in Turbopack test run (#56877) 2023-10-16 10:34:50 +00:00
build-indicator Skip webpack only test (#56929) 2023-11-03 01:37:21 +00:00
build-output Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
build-trace-extra-entries Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
build-trace-extra-entries-turbo Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
build-warnings Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
bundle-size-profiling
catches-missing-getStaticProps Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
chunking Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
clean-distdir Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
cli Ensure escaped string are parsed in NODE_OPTIONS (#65046) 2024-04-26 10:56:33 +02:00
client-404 Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
client-navigation-a11y
client-shallow-routing Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
compression
config Fix flaky test by removing unecessary NODE_OPTIONS='--inspect' (#63025) 2024-03-07 17:18:26 -08:00
config-devtool-dev Reapply "Turbopack: convert between locations correctly (#61477)" (#61733) (#61735) 2024-02-06 14:24:30 -08:00
config-experimental-warning Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
config-mjs Fix flaky test by removing unecessary NODE_OPTIONS='--inspect' (#63025) 2024-03-07 17:18:26 -08:00
config-output-export Add hasRedbox fix (#60522) 2024-01-15 09:36:44 +01:00
config-promise-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
config-resolve-alias Update tests for Turbopack (#59354) 2023-12-07 15:03:44 +01:00
config-syntax-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
config-validation Remove swc minify related code branches (#65690) 2024-05-13 23:37:37 +02:00
conflicting-public-file-page Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
conflicting-ssg-paths/test Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
create-next-app feat: Add option to enable Turbopack with create-next-app (#65926) 2024-05-20 20:34:24 +00:00
critical-css chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
css/test Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
css-client-nav/test Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
css-customization/test Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
css-features Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
css-fixtures feat: Introduce lightningcss-loader for webpack users (#61327) 2024-03-06 17:07:53 +01:00
css-minify Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
css-modules/test Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
custom-error de-flake custom-error integration test (#63994) 2024-04-02 13:20:02 -07:00
custom-error-page-exception Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
custom-page-extension Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
custom-routes Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
custom-routes-catchall Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
custom-routes-i18n Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
custom-routes-i18n-index-redirect Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
custom-server chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
custom-server-types Improve initial setup with new App Router TypeScript project (#64826) 2024-04-26 18:19:50 +02:00
data-fetching-errors Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
dedupes-scripts Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
development-hmr-refresh
development-runtime-config
disable-js Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
dist-dir Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
document-file-dependencies Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
document-head-warnings Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
draft-mode Improve initial setup with new App Router TypeScript project (#64826) 2024-04-26 18:19:50 +02:00
dynamic-optional-routing Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
dynamic-optional-routing-root-fallback Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
dynamic-optional-routing-root-static-paths Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
dynamic-require
dynamic-route-rename
dynamic-routing Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
edge-runtime-configurable-guards Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
edge-runtime-dynamic-code chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
edge-runtime-module-errors fix(turbopack): throws api issues (#64032) 2024-04-03 13:50:30 -07:00
edge-runtime-response-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
edge-runtime-streaming-error Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
edge-runtime-with-node.js-apis Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
empty-object-getInitialProps
empty-project
env-config Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
error-in-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
error-load-fail Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
error-plugin-stack-overflow More Turbopack fixes (#56275) 2023-10-02 09:42:32 +02:00
errors-on-output-to-public Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
errors-on-output-to-static Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
eslint Improve initial setup with new App Router TypeScript project (#64826) 2024-04-26 18:19:50 +02:00
export-404 Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-default-map Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
export-dynamic-pages Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-fallback-true-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-getInitialProps-warn Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-image-default Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-image-loader Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-image-loader-legacy Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-index-not-found-gsp Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-intent Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
export-subfolders Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
externals-esm-loose Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
externals-pages-bundle feat(turbopack): add support for bundlePagesRouterDependencies (#65520) 2024-05-10 20:51:55 +02:00
fallback-false-rewrite Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
fallback-modules Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
fallback-route-params Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
fetch-polyfill Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
fetch-polyfill-ky-universal Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
file-serving Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
filesystempublicroutes Fix filesystempublicroutes test for Turbopack (#61132) 2024-01-25 14:44:50 +01:00
firebase-grpc Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
font-optimization Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
future Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
getinitialprops Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
getserversideprops-export-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
getserversideprops-preview Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
gip-identifier Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
gsp-build-errors Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
gsp-extension Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
gssp-pageProps-merge Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
gssp-redirect Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
gssp-redirect-base-path Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
gssp-redirect-with-rewrites
handles-export-errors Change default of prerenderEarlyExit to true (#65830) 2024-05-20 12:51:01 -07:00
hashbang Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
hydrate-then-render Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
hydration Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
i18n-support-base-path Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
i18n-support-catchall Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support-custom-error Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support-fallback-rewrite Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support-fallback-rewrite-legacy Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support-index-rewrite Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
i18n-support-same-page-hash-change Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
image-generation Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
image-optimizer fix(next/image)!: set upstream timeout to 7 seconds (#65821) 2024-05-15 18:00:20 -07:00
import-assertion feat: support import attributes (#65749) 2024-05-15 17:15:17 +02:00
import-attributes feat: support import attributes (#65749) 2024-05-15 17:15:17 +02:00
index-index Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
initial-ref Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
invalid-config-values Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
invalid-custom-routes Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
invalid-document-image-import Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
invalid-href Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
invalid-middleware-matchers Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
invalid-multi-match Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
invalid-page-automatic-static-optimization Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
invalid-revalidate-values
invalid-server-options chore: update ESLint and plugins to latest (#61544) 2024-02-01 20:06:02 -05:00
jsconfig Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
jsconfig-baseurl Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
jsconfig-empty Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
jsconfig-paths Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
jsconfig-paths-wildcard Split jsconfig-paths and jsconfig-paths-wildcard tests (#57360) 2023-10-24 13:58:15 -07:00
json-serialize-original-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
link-ref Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
link-with-encoding chore: upgrade jest (#56909) 2023-10-19 17:38:24 +00:00
link-with-multiple-child/test
link-without-router Use @testing-library instead of react-dom/test-utils (#65328) 2024-05-06 21:02:25 +02:00
middleware-basic Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
middleware-build-errors Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
middleware-dev-update
middleware-overrides-node.js-api Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
middleware-prefetch Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
middleware-src Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
missing-document-component-error
mixed-ssg-serverprops-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
next-dynamic Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
next-dynamic-css Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
next-dynamic-lazy-compilation Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
next-image-legacy fix(next/image): prefer sharp defaults, use mozjpeg for JPEG (#65846) 2024-05-20 09:30:09 -04:00
next-image-new fix(next/image): prefer sharp defaults, use mozjpeg for JPEG (#65846) 2024-05-20 09:30:09 -04:00
no-op-export/test Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
no-override-next-props
no-page-props Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
node-fetch-keep-alive Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
non-next-dist-exclude Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
non-standard-node-env-warning Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
not-found-revalidate Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
nullish-config Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
numeric-sep Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
ondemand More Turbopack fixes (#56275) 2023-10-02 09:42:32 +02:00
optional-chaining-nullish-coalescing Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
page-config Use local AMP validator to reduce test flakiness (#63838) 2024-03-28 20:25:35 +00:00
page-extensions Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
plugin-mdx-rs fext(next): extend next.config for mdxRs support options (#64801) 2024-04-22 21:51:47 +00:00
polyfilling-minimal Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
polyfills Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
port-env-var Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
preload-viewport Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender-export Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender-fallback-encoding Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
prerender-invalid-catchall-params Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender-invalid-paths Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender-no-revalidate Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
prerender-preview Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
prerender-revalidate Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
preview-fallback Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
production-browser-sourcemaps Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
production-build-dir Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
production-config Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
production-nav Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
production-start-no-build
query-with-encoding Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
re-export-all-exports-from-page-disallowed Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
react-current-version Support React 19 in App and Pages router (#65058) 2024-05-07 18:18:32 +02:00
react-profiling-mode Support interrupts and focus in react-profiling-mode test (#65200) 2024-05-06 07:28:43 +02:00
react-streaming Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
read-only-source-hmr Turbopack: support more server code in tracing error stack frames (#57156) 2023-10-20 17:09:10 -07:00
relay-graphql-swc-multi-project Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
relay-graphql-swc-single-project Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
render-error-on-module-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
render-error-on-top-level-error Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
repeated-slashes chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
required-server-files-ssr-404 Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
revalidate-as-path Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
rewrite-with-browser-history Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
rewrites-client-resolving Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
rewrites-destination-query-array Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
rewrites-has-condition Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
rewrites-manual-href-as Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
root-catchall-cache Fix revalidateTimings route for catchall index route (#65843) 2024-05-20 15:13:07 +00:00
root-optional-revalidate Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
route-index Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
route-indexes Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
route-load-cancel Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
route-load-cancel-css Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
router-hash-navigation Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
router-is-ready Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
router-is-ready-app-gip Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
router-prefetch Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
router-rerender Fix typos in test descriptions in router-rerender integration tests (#65834) 2024-05-16 22:31:32 +00:00
script-loader test: Use the correct chunk path for testing (#63859) 2024-04-02 01:51:47 +00:00
scroll-back-restoration Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
scroll-forward-restoration Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
scss/scss-fixtures Turbopack: sass support (#62717) 2024-03-04 11:56:55 +00:00
server-asset-modules Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
server-side-dev-errors OpenTelemetry: trace API routes in page router (#62120) 2024-02-16 03:45:59 +00:00
sharp-api feat(next/image)!: remove squoosh in favor of sharp as optional dependency (#63321) 2024-04-25 14:01:56 -04:00
src-dir-support Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
src-dir-support-double-dir Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
ssg-data-404 test(fixture): prevent unexpected errored exit with leaking error (#65007) 2024-04-24 19:27:32 -07:00
ssg-dynamic-routes-404-page Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
static-404 Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
static-page-name Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
styled-jsx-plugin chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02:00
telemetry Remove swc minify related code branches (#65690) 2024-05-13 23:37:37 +02:00
trailing-slash-dist Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
trailing-slashes Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
trailing-slashes-href-resolving Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
trailing-slashes-rewrite Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
tsconfig-verifier fix: improve tsconfig extends checks (#61413) 2024-04-23 12:25:33 +02:00
turbopack-unsupported-log Polish turbopack start logging (#57203) 2023-10-23 02:53:40 +00:00
turborepo-access-trace Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
turbotrace-with-webpack-worker Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typeof-window-replace Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typescript Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typescript-app-type-declarations
typescript-baseurl
typescript-custom-tsconfig Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typescript-external-dir
typescript-filtered-files Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typescript-hmr make test case less flaky (#57138) 2023-10-20 19:46:02 +02:00
typescript-ignore-errors Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
typescript-only-remove-type-imports Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
typescript-paths
typescript-workspaces-paths
undefined-webpack-config Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
url More test updates (#56146) 2023-09-28 13:11:11 +02:00
url-imports Skip production tests for Turbopack (#56089) 2023-09-27 15:19:42 +02:00
webpack-config-extensionalias More Turbopack fixes (#56275) 2023-10-02 09:42:32 +02:00
webpack-config-mainjs More Turbopack fixes (#56299) 2023-10-02 13:55:23 +00:00
webpack-require-hook Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
with-electron Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
with-router Rename process.env.TURBOPACK -> process.env.TURBOPACK_DEV in test skips (#63665) 2024-03-25 14:17:56 +01:00
worker-webpack5 Skip test/integration development tests during Turbopack build test run (#63671) 2024-03-25 18:37:34 +01:00
test-file.txt