<html>
<head>
<!-- These link tags are required for the css-stamp tests DO NOT REMOVE -->
<title>Loader Automated Tests</title>
</head>
<body class="yui3-skin-sam">
<div id="log"></div>
<!-- This is the main test file, notice it's using the `yui-base` seed file
without Loader on the page, so Loader is fetched before tests are executed. -->
<script type="text/javascript">
var YUI_config = {
gconfig: true,
gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
};
YUI({
allowRollup: false,
logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, widget: true },
filter: YUI_config.gfilter,
modules: {
'loader-tests': {
fullpath: '/loader-tests.js',
requires: [ 'test']
}
}
}).use('loader-tests', 'test-console', 'test', function(Y) {
new Y.Test.Console().render('#log');
//This is a YUITest hack to rename this test for reporting
Y.Test.Runner.setName('Loader Main Seed Test Suite (fetch loader)');
});
</script>
</body>
</html>