-
Notifications
You must be signed in to change notification settings - Fork 27.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: combine graceful-shutdown tests
rather than having an integration test with dev and production modes, and then a separate test for standalone-mode that copies all the same tests, we can just follow the same pattern we had in integration but include the standalone-mode tests in the same file.
- Loading branch information
Showing
6 changed files
with
117 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"compilerOptions": { | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"strict": false, | ||
"noEmit": true, | ||
"incremental": true, | ||
"esModuleInterop": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"jsx": "preserve" | ||
}, | ||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], | ||
"exclude": ["node_modules"] | ||
} |
159 changes: 0 additions & 159 deletions
159
test/production/standalone-mode/graceful-shutdown/index.test.ts
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
test/production/standalone-mode/graceful-shutdown/next.config.js
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
test/production/standalone-mode/graceful-shutdown/pages/api/long-running.ts
This file was deleted.
Oops, something went wrong.