Skip to content

Commit

Permalink
Testing the vjs.obj.isArray videojs#1195
Browse files Browse the repository at this point in the history
Added test for the vgs.obj.isArray
  • Loading branch information
shmulik committed May 20, 2014
1 parent 9cd74e7 commit 7093689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ test('should check if an object is an Array', function(){
ok(vjs.obj.isArray(arr) === true, 'Arr object is an Array');

var obj = {};
ok(vjs.obj.isArray(arr) === false, 'Obj is not an Array');
ok(vjs.obj.isArray(obj) === false, 'Obj is not an Array');
});

test('should check if an object is plain', function(){
Expand Down

0 comments on commit 7093689

Please sign in to comment.