<html>
<head>
<title>YUI Get Tests</title>
<link rel="stylesheet" href="/build/test-console/assets/skins/sam/test-console.css" charset="utf-8">
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<p>You need to run 'node delay.js' if you pass delay=true in the querystring. Otherwise tests will fail.</p>
<!-- Adding these manually and doing a use("*") so we don't need "get" to test "get" -->
<script>
var YUI_config = {
gconfig: true,
gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
};
var Y = YUI({
allowRollup: false,
filter: YUI_config.gfilter,
modules: {
'get-test': {
fullpath: '/get-test.js',
requires: ['test', 'node']
}
}
}).use('*', function(Y) {
// Hit the default 'node /delay.js port'
Y.GetTests.TEST_FILES_BASE = (window.location.protocol + "//" + window.location.hostname + ":" + "8014/");
}
new Y.Test.Console().render('#log');
});
</script>
</body>
</html>