From 61a518f569862b823426aa1ad32bcbf4b4221154 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 1 Jun 2018 13:30:08 -0400 Subject: [PATCH] remove initCOnfig in tests because useless --- lib/cmd.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/cmd.js b/lib/cmd.js index 0e5c51996..e58b852e1 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -189,9 +189,6 @@ class Cmd { .description(__('run tests')) .action(function (file, options) { i18n.setOrDetectLocale(options.locale); - embark.initConfig('development', { - embarkConfig: 'embark.json', interceptLogs: false - }); embark.runTests(file); }); }