From 11f869b3278ca2e698d6a6f8932122e96479ff01 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 26 Jan 2016 20:34:35 -0500 Subject: [PATCH] Fix 'bye bye' being output in test progress --- gulpfile.js | 2 +- test/adapters/dblite_test.js | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4e8376b..cace1f5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -57,7 +57,7 @@ const ESLINT_SETTINGS = { const MOCHA_OPTIONS = { ui: 'tdd', bail: true, - reporter: 'list', + reporter: 'dot', timeout: 10000, }; diff --git a/test/adapters/dblite_test.js b/test/adapters/dblite_test.js index d96a387..c1cc05a 100644 --- a/test/adapters/dblite_test.js +++ b/test/adapters/dblite_test.js @@ -93,10 +93,6 @@ if (connection) { .get(); expect(promise).to.be.fulfilled; - }); - - suiteTeardown(() => { - qb.end(); - }); + }); }); } \ No newline at end of file