We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 743d941 commit d997186Copy full SHA for d997186
scripts/test-wrapper.mjs
@@ -67,7 +67,8 @@ async function main() {
67
// Increase Node.js heap size to prevent out of memory errors.
68
// Use 8GB in CI, 4GB locally.
69
// Add --max-semi-space-size for better GC with RegExp-heavy tests.
70
- NODE_OPTIONS: `${process.env.NODE_OPTIONS || ''} --max-old-space-size=${process.env.CI ? 8192 : 4096} --max-semi-space-size=512`.trim(),
+ NODE_OPTIONS:
71
+ `${process.env.NODE_OPTIONS || ''} --max-old-space-size=${process.env.CI ? 8192 : 4096} --max-semi-space-size=512`.trim(),
72
}
73
74
// Handle Windows vs Unix for vitest executable.
0 commit comments