File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments