Keep the root directory clean

This commit is contained in:
Simon Lamon
2022-07-30 13:35:56 +00:00
parent a8f63c478c
commit f45eb02394
5 changed files with 9 additions and 22 deletions
-1
View File
@@ -1 +0,0 @@
# empty
-11
View File
@@ -1,11 +0,0 @@
require:
- source-map-support/register
spec:
- out/**/*.test.js
- addons/**/out/*.test.js
watch-files:
- out/**/*.js
- addons/**/out/*.js
reporter: spec
color: true
check-leaks: true
+7 -4
View File
@@ -1,6 +1,9 @@
{
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "single",
"mochaExplorer.envPath": ".mocha.env",
"mochaExplorer.configFile": ".mocharc-unit.yml"
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "single",
"mochaExplorer.envPath": ".mocha.env",
"mochaExplorer.files": [
"out/**/*.test.js",
"addons/**/out/*.test.js"
]
}
+1 -3
View File
@@ -17,9 +17,7 @@ let testFiles = [
'./addons/**/out/*test.js',
];
let flagArgs = [
'--config', ".mocharc-default.yml"
];
let flagArgs = [];
if (process.argv.length > 2) {
const args = process.argv.slice(2);
+1 -3
View File
@@ -17,9 +17,7 @@ let testFiles = [
];
let flagArgs = [
'--config', ".mocharc-default.yml"
];
let flagArgs = [];
if (process.argv.length > 2) {
const args = process.argv.slice(2);