From d80a47f53956f9944f939b5de25e6d72a01d588c Mon Sep 17 00:00:00 2001 From: Simon Lamon Date: Sat, 30 Jul 2022 14:27:29 +0000 Subject: [PATCH] Add functionality back to mocha test explorer --- .mocharc.yml | 5 +++++ .vscode/settings.json | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 .mocharc.yml diff --git a/.mocharc.yml b/.mocharc.yml new file mode 100644 index 00000000..fb397fdd --- /dev/null +++ b/.mocharc.yml @@ -0,0 +1,5 @@ +require: + - source-map-support/register +reporter: spec +color: true +check-leaks: true diff --git a/.vscode/settings.json b/.vscode/settings.json index 28d340ae..07d643c6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,5 +5,9 @@ "mochaExplorer.files": [ "out/**/*.test.js", "addons/**/out/*.test.js" + ], + "mochaExplorer.watch": [ + "out/**/*.js", + "addons/**/out/*.js" ] }