From 189e5d916a2170b885a06c950a6581006562d306 Mon Sep 17 00:00:00 2001 From: Sam Harrison Date: Thu, 19 Mar 2020 09:46:37 -0500 Subject: [PATCH] fix: move the mocha config file to the project root --- .mocharc.yml | 4 ++++ test/mocha.opts | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 .mocharc.yml delete mode 100644 test/mocha.opts diff --git a/.mocharc.yml b/.mocharc.yml new file mode 100644 index 00000000..066a8425 --- /dev/null +++ b/.mocharc.yml @@ -0,0 +1,4 @@ +require: test/helpers/init.js +recursive: true +reporter: spec +timeout: false diff --git a/test/mocha.opts b/test/mocha.opts deleted file mode 100644 index 8dda5560..00000000 --- a/test/mocha.opts +++ /dev/null @@ -1,4 +0,0 @@ ---require test/helpers/init.js ---recursive ---reporter spec ---timeout 10000