Skip to content

Commit 8679d80

Browse files
authored
Merge pull request #57 from Sykander/async-sort-specs
Async Sort Specs
2 parents a0e614d + 360381e commit 8679d80

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

test/async-array.spec.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ context('Async Array', () => {
66
it('Should inherit from Array', () =>
77
expect(AsyncArray.prototype).to.be.instanceOf(Array));
88

9-
it('Should have access asyncFilter method', () =>
9+
it('Should have access to the asyncFilter method', () =>
1010
expect(AsyncArray.prototype.asyncFilter).to.be.a('function'));
1111

12-
it('Should have access asyncFind method', () =>
12+
it('Should have access to the asyncFind method', () =>
1313
expect(AsyncArray.prototype.asyncFind).to.be.a('function'));
1414

15-
it('Should have access asyncFindIndex method', () =>
15+
it('Should have access to the asyncFindIndex method', () =>
1616
expect(AsyncArray.prototype.asyncFindIndex).to.be.a('function'));
1717

18-
it('Should have access asyncMap method', () =>
18+
it('Should have access to the asyncMap method', () =>
1919
expect(AsyncArray.prototype.asyncMap).to.be.a('function'));
20+
21+
it('Should have access to the asyncSort method', () =>
22+
expect(AsyncArray.prototype.asyncSort).to.be.a('function'));
2023
});
2124
});

0 commit comments

Comments
 (0)