mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
setup travis config
This commit is contained in:
@ -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);
|
||||
})();
|
Reference in New Issue
Block a user