From 8c55c83e4a66bab525a064043f8082db8fbf89b6 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sun, 24 Jul 2022 17:12:23 -0700 Subject: [PATCH] Fix test-api running unit tests as well This file was added to support the mocha test explorer in vscode but it turns out it causes all calls to mocha to run the unit tests. I couldn't figure out how to ignore through args. Fixes #3777 --- .mocharc.yml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .mocharc.yml diff --git a/.mocharc.yml b/.mocharc.yml deleted file mode 100644 index c19fe15a..00000000 --- a/.mocharc.yml +++ /dev/null @@ -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