1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-12 11:15:04 +02:00
video.js/test/unit/extend.test.js
2016-08-12 13:51:31 -04:00

19 lines
454 B
JavaScript

/* eslint-env qunit */
import extendFn from '../../src/js/extend.js';
QUnit.module('extend.js');
QUnit.test('should add implicit parent constructor call', function(assert) {
let superCalled = false;
const Parent = function() {
superCalled = true;
};
const Child = extendFn(Parent, {
foo: 'bar'
});
const child = new Child();
assert.ok(superCalled, 'super constructor called');
assert.ok(child.foo, 'child properties set');
});