Skip to content

Commit b97bbe8

Browse files
committed
fix(Angularjs): Add spec for isArrayLike()
No specs exist for isArrayLike angular#4751
1 parent 907f715 commit b97bbe8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/AngularSpec.js

+7
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,13 @@ describe('angular', function() {
439439
});
440440
});
441441

442+
describe('isArrayLike', function() {
443+
it('should return true if passed an array', function() {
444+
expect(isArrayLike([1,2,3,4])).toBe(true)
445+
});
446+
447+
});
448+
442449

443450
describe('forEach', function() {
444451
it('should iterate over *own* object properties', function() {

0 commit comments

Comments
 (0)