diff --git a/tests/lib/screenshot-testing/support/test-environment.js b/tests/lib/screenshot-testing/support/test-environment.js index 36807dac8908059f97547f56e611af4541fa14c0..7c0911d5cc7fdc9bd0eed3c45c76c99e8f5426bc 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;