mirror of
https://github.com/kmoskwiak/videojs-resolution-switcher.git
synced 2025-10-03 17:59:42 +02:00
21 lines
644 B
HTML
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>
|