chore(): re enable integration tests bp (#12724)

* chore(): re enable integration tests bp

* chore(): re enable integration tests bp
This commit is contained in:
Adrien de Peretti
2025-06-12 20:05:11 +02:00
committed by GitHub
parent 243130206a
commit 65f9333501
5 changed files with 6 additions and 8 deletions

View File

@@ -4,7 +4,6 @@ process.chdir(__dirname)
const defineJestConfig = require("../../define_jest_config")
module.exports = defineJestConfig({
testEnvironment: `node`,
rootDir: "./",
testPathIgnorePatterns: [
`/examples/`,
`/www/`,

View File

@@ -5,8 +5,8 @@
"license": "MIT",
"private": true,
"scripts": {
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --silent=false --no-cache --maxWorkers=50% --bail --detectOpenHandles --forceExit --logHeapUsage",
"test:integration:chunk": "NODE_OPTIONS=--experimental-vm-modules jest --silent --no-cache --bail --maxWorkers=50% --forceExit --detectOpenHandles --testPathPattern=$(echo $CHUNKS | jq -r \".[${CHUNK}] | .[]\")",
"test:integration": "jest --silent=false --no-cache --maxWorkers=50% --bail --detectOpenHandles --forceExit --logHeapUsage",
"test:integration:chunk": "jest --silent --no-cache --bail --maxWorkers=50% --forceExit --detectOpenHandles --testPathPattern=$(echo $CHUNKS | jq -r \".[${CHUNK}] | .[]\")",
"build": "tsc ./src/* --allowJs --outDir ./dist"
},
"dependencies": {