setup travis config

This commit is contained in:
Niklas von Hertzen
2013-05-29 18:41:15 +03:00
parent b91fd9bc87
commit 0d4b6ba665
4 changed files with 57 additions and 37 deletions

View File

@@ -246,12 +246,18 @@
var tests = [],
outputImages = false,
results = {},
testStream = getTests("tests/cases");
results = {};
exports.tests = function() {
var testStream = getTests("tests/cases");
testStream.onValue(function(test) {
tests.push(test);
});
testStream.onEnd(runWebDriver);
};
testStream.onValue(function(test) {
tests.push(test);
});
/*
if (outputImages) {
@@ -261,5 +267,4 @@
}
*/
testStream.onEnd(runWebDriver);
})();