Fix running unit tests on Windows

This commit is contained in:
Koen Vlaswinkel
2022-09-16 14:58:26 +02:00
parent cd2b5a8c59
commit 70098aa19c
2 changed files with 2 additions and 1 deletions

View File

@@ -1188,7 +1188,7 @@
"watch:extension": "tsc --watch",
"watch:webpack": "gulp watchView",
"test": "npm-run-all -p test:*",
"test:unit": "LANG=en-US mocha --exit -r ts-node/register -r test/mocha.setup.js test/pure-tests/**/*.ts",
"test:unit": "mocha --exit -r ts-node/register -r test/mocha.setup.js test/pure-tests/**/*.ts",
"test:view": "jest",
"preintegration": "rm -rf ./out/vscode-tests && gulp",
"integration": "node ./out/vscode-tests/run-integration-tests.js no-workspace,minimal-workspace",

View File

@@ -1 +1,2 @@
process.env.TZ = 'UTC';
process.env.LANG = 'en-US';