Skip to content

Commit

Permalink
revert tests
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Oct 4, 2022
1 parent 4924e9e commit b7d6d42
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/e2e/app-dir/app-alias/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/app-edge/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/app-prefetch/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
5 changes: 5 additions & 0 deletions test/e2e/app-dir/app-rendering/next.config.js
@@ -0,0 +1,5 @@
module.exports = {
experimental: {
appDir: true,
},
}
1 change: 1 addition & 0 deletions test/e2e/app-dir/app-static/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/app/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
sri: {
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/asset-prefix/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/next-font/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
fontLoaders: {
Expand Down
5 changes: 5 additions & 0 deletions test/e2e/app-dir/root-layout/next.config.js
@@ -0,0 +1,5 @@
module.exports = {
experimental: {
appDir: true,
},
}
1 change: 1 addition & 0 deletions test/e2e/app-dir/rsc-basic/next.config.js
Expand Up @@ -4,6 +4,7 @@ module.exports = {
maxInactiveAge: 1000 * 60 * 60,
},
experimental: {
appDir: true,
serverComponentsExternalPackages: ['conditional-exports-optout'],
},
rewrites: async () => {
Expand Down
1 change: 1 addition & 0 deletions test/e2e/app-dir/trailingslash/next.config.js
@@ -1,5 +1,6 @@
module.exports = {
experimental: {
appDir: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
Expand Down
5 changes: 5 additions & 0 deletions test/e2e/app-dir/with-babel/next.config.js
@@ -0,0 +1,5 @@
module.exports = {
experimental: {
appDir: true,
},
}
3 changes: 3 additions & 0 deletions test/e2e/switchable-runtime/next.config.js
@@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
experimental: {
appDir: true,
},
async rewrites() {
return {
afterFiles: [
Expand Down
5 changes: 5 additions & 0 deletions test/integration/conflicting-app-page-error/next.config.js
@@ -0,0 +1,5 @@
module.exports = {
experimental: {
appDir: true,
},
}

0 comments on commit b7d6d42

Please sign in to comment.