videojs-resolution-switcher/test/index.html
Kasper Moskwiak 940c95ae67 init
2015-07-27 18:12:42 +02:00

21 lines
602 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Video.js Test</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script>
test('the environment is sane', function() {
ok(true, 'everything is swell');
});
</script>
<script src="../node_modules/video.js/dist/video-js/video.js"></script>
<script src="../lib/videojs-test.js"></script>
<script src="videojs-test.test.js"></script>
</body>
</html>