mirror of
https://github.com/videojs/video.js.git
synced 2024-12-04 10:34:51 +02:00
44312bc060
Since we no longer support IE8, we can actually update our qunit version.
19 lines
548 B
HTML
19 lines
548 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VideoJS Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/qunit/qunit/qunit.css">
|
|
<link rel="stylesheet" href="../build/temp/video-js.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<script src="../node_modules/qunit/qunit/qunit.js"></script>
|
|
|
|
<!-- Execute the bundled tests first -->
|
|
<script src="../build/temp/tests.js"></script>
|
|
<script src="../build/temp/browserify.js"></script>
|
|
<script src="../build/temp/webpack.js"></script>
|
|
</body>
|
|
</html>
|