Merge pull request #3966 from silamon/mochaunittestback

Fix mocha test explorer
This commit is contained in:
Daniel Imms
2022-07-30 07:39:10 -07:00
committed by GitHub
2 changed files with 16 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
require:
- source-map-support/register
reporter: spec
color: true
check-leaks: true
+11 -3
View File
@@ -1,5 +1,13 @@
{
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "single",
"mochaExplorer.envPath": ".mocha.env"
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "single",
"mochaExplorer.envPath": ".mocha.env",
"mochaExplorer.files": [
"out/**/*.test.js",
"addons/**/out/*.test.js"
],
"mochaExplorer.watch": [
"out/**/*.js",
"addons/**/out/*.js"
]
}