diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index dc3fbb33304..f85eca3918a 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -139,7 +139,7 @@ jobs: echo icu config: $(node -e "console.log(process.config)" | grep icu) - name: Run tests - run: npm run test:javascript + run: npm run test:javascript:without-intl test-fuzzing: name: Fuzzing diff --git a/package.json b/package.json index 7dd4ae8b9c8..81d11ea4afd 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,7 @@ "test": "npm run test:javascript && cross-env NODE_V8_COVERAGE= npm run test:typescript", "test:javascript": "npm run test:javascript:no-jest && npm run test:jest", "test:javascript:no-jest": "npm run generate-pem && npm run test:unit && npm run test:node-fetch && npm run test:cache && npm run test:interceptors && npm run test:fetch && npm run test:cookies && npm run test:eventsource && npm run test:wpt && npm run test:websocket && npm run test:node-test", + "test:javascript:without-intl": "npm run test:javascript:no-jest", "test:busboy": "borp -p \"test/busboy/*.js\"", "test:cache": "borp -p \"test/cache/*.js\"", "test:cookies": "borp -p \"test/cookie/*.js\"",