videojs-resolution-switcher/test/index.html
2015-08-01 14:07:43 +02:00

21 lines
644 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Video.js videoJsResolutionSwitcher</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"></script>
<script src="../lib/videojs-resolution-switcher.js"></script>
<script src="videojs-resolution-switcher.test.js"></script>
</body>
</html>