<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Parallel Automated Tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<script type="text/javascript" src="/build/yui/yui.js"></script>
<script type="text/javascript">
var YUI_config = {
gconfig: true,
gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
};
YUI({
filter: YUI_config.gfilter,
modules: {
'parallel-tests': {
fullpath: '/parallel-tests.js',
requires: [ 'test']
}
}
}).use('parallel-tests', 'test-console', 'test', function(Y) {
(new Y.Test.Console()).render('#log');
Y.Test.Runner.setName("Parallel");
Y.Test.Runner.run();
});
</script>
</body>
</html>