mirror of
https://github.com/videojs/video.js.git
synced 2024-11-26 08:51:09 +02:00
63 lines
1.6 KiB
HTML
63 lines
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Video.js Test Suite</title>
|
|
|
|
<!--[if IE]>
|
|
<script src="https://getfirebug.com/releases/lite/1.4/firebug-lite.js"></script>
|
|
<!--<![endif]-->
|
|
|
|
<!-- QUnit -->
|
|
<link rel="stylesheet" href="../test/qunit/qunit/qunit.css" />
|
|
<script src="../test/qunit/qunit/qunit.js"></script>
|
|
|
|
<!-- Video.js CSS -->
|
|
<link rel="stylesheet" href="../src/css/video-js.css" type="text/css">
|
|
|
|
<script type="text/javascript">
|
|
(function(){
|
|
|
|
// ADD NEW TEST FILES HERE
|
|
var tests = [
|
|
'test/unit/lib.js',
|
|
'test/unit/events.js',
|
|
'test/unit/component.js',
|
|
'test/unit/mediafaker.js',
|
|
'test/unit/player.js',
|
|
'test/unit/core.js',
|
|
'test/unit/media.html5.js',
|
|
'test/unit/plugins.js'
|
|
];
|
|
var compiledTests = "build/files/test.minified.video.js";
|
|
|
|
var projectRoot = '../';
|
|
var scripts = [];
|
|
|
|
// Choose either the raw source and tests
|
|
// Or the compiled source + tests.
|
|
// Use ?comiled to use the compiled tests
|
|
if (QUnit.urlParams.min || QUnit.urlParams.compiled) {
|
|
scripts.push(compiledTests);
|
|
} else {
|
|
scripts = scripts.concat(['build/source-loader.js'], tests);
|
|
}
|
|
|
|
for (var i = 0; i < scripts.length; i++) {
|
|
document.write( "<script src='" + projectRoot + scripts[i] + "'><\/script>" );
|
|
}
|
|
|
|
})()
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1 id="qunit-header">Video.js Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="qunit-fixture"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|