1630N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2362N/A<html class="foo">
1630N/A<head>
1630N/A<title>YUI Seed Tests</title>
1630N/A</head>
1630N/A<body class="yui3-skin-sam">
2362N/A
1630N/A<div id="log"></div>
2362N/A
1630N/A<div id="tester" style="visibility: hidden;">
1630N/A <span>test</span>
1630N/A <span>test</span>
1630N/A <span>test</span>
1630N/A</div>
1630N/A
1630N/A<span id="test"></span>
1630N/A
1630N/A<iframe name="xframe" id="xframe" src="assets/xframe.html" style="visibility: hidden;"></iframe>
1630N/A
1630N/A
2362N/A<script>
2362N/A //Fooling into parsing the Node.js process info
2362N/A var process = {
1630N/A versions: {
1630N/A node: 6
1630N/A },
1630N/A platform: 'Win32'
1630N/A };
1630N/Avar YUI = {};
1630N/A</script>
1630N/A<!-- This is the main test file, notice it's using the `yui-base` seed file
1630N/Awithout Loader on the page, so Loader is fetched before tests are executed. -->
1630N/A<script type="text/javascript" src="/build/yui-core/yui-core-coverage.js"></script>
1630N/A<script type="text/javascript" src="/build/get/get.js"></script>
1630N/A<script type="text/javascript" src="/build/features/features-coverage.js"></script>
1630N/A<script type="text/javascript" src="/build/intl-base/intl-base-coverage.js"></script>
1630N/A<script type="text/javascript" src="/build/yui-log/yui-log-coverage.js"></script>
1630N/A<script type="text/javascript" src="/build/yui-later/yui-later-coverage.js"></script>
1630N/A<script type="text/javascript" src="/build/loader/loader.js"></script>
1630N/A
1630N/A<script type="text/javascript">
1630N/A
1630N/AYUI.GlobalConfig = {
1630N/A modules: {
1630N/A 'global-mod': {
1630N/A fullpath: '/assets/globalmod.js'
1630N/A }
1630N/A },
1630N/A groups: {
1630N/A //Just for code coverage..
1630N/A noop: {
1630N/A modules: {
1630N/A noop: {
1630N/A fullpath: '/noop.js'
1630N/A }
1630N/A }
1630N/A }
1630N/A }
1630N/A};
1630N/A
1630N/Avar YUI_config = {
1630N/A combine: false,
1630N/A base: '/build/',
1630N/A loaderPath: 'loader/loader.js',
1630N/A gconfig: true,
1630N/A core: ['get', 'features','intl-base','yui-log','yui-later','loader-base','loader-rollup','loader-yui3' ],
1630N/A gfilter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
1630N/A};
1630N/A
1630N/AYUI({
1630N/A allowRollup: false,
1630N/A logExclude: {Dom: true, Selector: true, Node: true, attribute: true, base: true, event: true, widget: true },
filter: YUI_config.gfilter,
modules: {
'array-test': {
fullpath: 'array-test.js',
requires: ['test']
},
'object-test': {
fullpath: 'object-test.js',
requires: ['test']
},
'lang-test': {
fullpath: 'lang-test.js',
requires: ['test']
},
'seed-tests': {
fullpath: '/seed-tests.js',
requires: [ 'test']
},
'core-tests': {
fullpath: '/core-tests.js',
requires: [ 'classnamemanager']
},
'config-test': {
fullpath: 'config-test.js'
},
'later-test': {
fullpath: 'later-test.js'
},
'namespace-test': {
fullpath: 'namespace-test.js'
},
'ua-data': {
fullpath: '/ua-data.js'
},
'ua-yui-data': {
fullpath: '/ua-yui-data.js',
requires: [ 'ua-data' ]
},
'ua-tests': {
fullpath: '/ua-tests.js',
requires: [ 'ua-data', 'ua-yui-data', 'test' ]
}
}
}).use('ua-tests', 'seed-tests', 'core-tests', 'config-test', 'later-test', 'namespace-test', 'array-test', 'object-test', 'lang-test', '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('YUI Seed Fetch Loader Test Suite');
Y.Test.Runner.run();
});
</script>
</body>
</html>