We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bccde5 commit 76cd866Copy full SHA for 76cd866
test/apiB-specs.js
@@ -503,6 +503,11 @@ describe( 'APIs — B', function () {
503
} );
504
} ); // .each() method
505
506
+ it( '.map() method', function () {
507
+ const result = selOfFighters.map( ( e ) => e.out());
508
+ expect( result ).to.deep.equal( d0ce.fighters );
509
+ } ); // .each() method
510
+
511
it( '.filter() method', function () {
512
expect( selOfFighters.filter( ( e ) => ( e.out() === d0ce.fighters[ 0 ] ) ).out() ).to.deep.equal( d0ce.fighters.slice( 0, 1 ) );
513
} ); // .filter() method
0 commit comments