diff --git a/tests/selenium.js b/tests/selenium.js
index 059b80c..c1b0d0b 100644
--- a/tests/selenium.js
+++ b/tests/selenium.js
@@ -22,6 +22,13 @@
};
var server = app.listen(port);
+
+ app.use('/index.html', function(req, res){
+ res.send("
" + tests.map(function(test) {
+ return "- " + test + "
";
+ }).join("") + "
");
+ });
+
app.use('/', express.static(__dirname + "/../"));
function mapStat(item) {
@@ -301,25 +308,14 @@
var tests = [],
outputImages = false,
- results = {};
+ results = {},
+ testStream = getTests("tests/cases");
- exports.tests = function() {
- var testStream = getTests("tests/cases");
-
- testStream.onValue(function(test) {
- tests.push(test);
- });
-
- testStream.onEnd(runWebDriver);
- };
-
-
- /*
- if (outputImages) {
- resultStream.flatMap(createImages).onValue(function(test){
- console.log(test.data.testCase, "screenshots created");
- });
- }
- */
+ testStream.onValue(function(test) {
+ tests.push(test);
+ });
+ exports.tests = function() {
+ testStream.onEnd(runWebDriver);
+ };
})();
\ No newline at end of file