Skip to content

Commit

Permalink
fix(videojs): missing return in registerComponent (#8247)
Browse files Browse the repository at this point in the history
  • Loading branch information
amtins authored May 12, 2023
1 parent 866ef24 commit f1558c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/video.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ videojs.registerComponent = (name, comp) => {
log.warn(`The ${name} tech was registered as a component. It should instead be registered using videojs.registerTech(name, tech)`);
}

Component.registerComponent.call(Component, name, comp);
return Component.registerComponent.call(Component, name, comp);
};

videojs.getTech = Tech.getTech;
Expand Down
6 changes: 6 additions & 0 deletions test/unit/player.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2165,6 +2165,12 @@ QUnit.test('When VIDEOJS_NO_DYNAMIC_STYLE is set, apply sizing directly to the t
window.VIDEOJS_NO_DYNAMIC_STYLE = originalVjsNoDynamicStyling;
});

QUnit.test('should return the registered component', function(assert) {
class CustomPlayer extends Player {}

assert.strictEqual(videojs.registerComponent('CustomPlayer', CustomPlayer), CustomPlayer, 'the component is returned');
});

QUnit.test('should allow to register custom player when any player has not been created', function(assert) {
class CustomPlayer extends Player {}
videojs.registerComponent('Player', CustomPlayer);
Expand Down

0 comments on commit f1558c6

Please sign in to comment.