browserify-test.js 304 B

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