Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests/lib
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2014-10-10 07:58:21 +0400
committerdiosmosis <benaka@piwik.pro>2014-10-10 07:58:21 +0400
commit5f6abcfd84c44f6b5ffe35e01a7b73a74969b1bc (patch)
treeaaf302b547f084021a5dc936cd1aad7e37ff30b3 /tests/lib
parentacb636ae935fb7c68d1f44fee7d04ae04a49a46d (diff)
Execute console commands with -v in screenshot tests.
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/screenshot-testing/support/test-environment.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/screenshot-testing/support/test-environment.js b/tests/lib/screenshot-testing/support/test-environment.js
index 36807dac89..7c0911d5cc 100644
--- a/tests/lib/screenshot-testing/support/test-environment.js
+++ b/tests/lib/screenshot-testing/support/test-environment.js
@@ -93,7 +93,7 @@ TestingEnvironment.prototype._call = function (params, done) {
TestingEnvironment.prototype.executeConsoleCommand = function (command, args, callback) {
var consoleFile = path.join(PIWIK_INCLUDE_PATH, 'console'),
- commandArgs = [consoleFile, command].concat(args),
+ commandArgs = [consoleFile, command, '-v'].concat(args),
child = require('child_process').spawn(config.php, commandArgs);
var firstLine = true;