blob: dfcac20d6fbff40baf9dc1e87d750298311f0d04 (
plain)
1
2
3
4
5
6
7
8
|
/* eslint-disable no-var */
/* eslint-env qunit */
var videojs = require('../../');
QUnit.module('Browserify Require');
QUnit.test('videojs should be requirable and bundled via browserify', function(assert) {
assert.ok(videojs, 'videojs is required properly');
});
|