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