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 <benakamoorthi@fastmail.fm>2014-03-03 13:50:36 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-03-03 13:50:36 +0400
commit47c81da82bd5cfa589ad23e5d66a6bdf3d025184 (patch)
tree68bbbf70b6ac171ab5b56aef8e9ee2adc7a5dfde /tests/lib
parentc9fc830bfeca832b5088024f97c4c14a9abdab09 (diff)
Fixing some tests, removing some travis debugging code & adding other travis debugging code.
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/screenshot-testing/support/diff-viewer.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/lib/screenshot-testing/support/diff-viewer.js b/tests/lib/screenshot-testing/support/diff-viewer.js
index f6510e3e50..54844dc576 100644
--- a/tests/lib/screenshot-testing/support/diff-viewer.js
+++ b/tests/lib/screenshot-testing/support/diff-viewer.js
@@ -50,8 +50,6 @@ DiffViewerGenerator.prototype.generate = function (callback) {
var self = this;
this.generateDiffs(function () {
- console.log("DIFF DIR: " + self.diffDir);
- console.log(JSON.stringify(fs.list(self.diffDir)));
var diffViewerContent = "<html>\
<head></head>\
<body>\
@@ -126,7 +124,6 @@ DiffViewerGenerator.prototype.generateDiffs = function (callback, i) {
&& entry.processed
) {
var diffPath = this.getDiffPath(entry);
- console.log("COMPARE ARGS: " + JSON.stringify([entry.expected, entry.processed, diffPath]));
var child = require('child_process').spawn('compare', [entry.expected, entry.processed, diffPath]);