<html>
<head>
<title>IO Tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<script>
(function() {
var use = [], i;
for (i in testModules) {
use.push(i);
}
use.push('test-console'); //Attach all modules and the test-console module
YUI({
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
modules: testModules //From index.js (so they can be reused in Nodejs)
}).use(use, function(Y) {
(new Y.Test.Console()).render('#log');
Y.Test.Runner.setName('io-base Test Suite');
});
}());
</script>
</body>
</html>