UNPKG

304 BJavaScriptView Raw
1/* eslint-disable no-var */
2/* eslint-env qunit */
3var hls = require('../es5/videojs-contrib-hls.js');
4var q = window.QUnit;
5
6q.module('Browserify Require');
7q.test('hls should be requirable and bundled via browserify', function(assert) {
8 assert.ok(hls, 'videoj-contrib-hls is required properly');
9});