@@ -14,7 +14,7 @@ import {
1414const firstElementLargerThanTwo = inputArr . findIndex ( largerThanTwo ) ;
1515
1616describe ( 'asyncSomeStrict()' , ( ) => {
17- it ( 'assertions below are valid for synchronous .some()' , ( ) => {
17+ it . skip ( 'assertions below are valid for synchronous .some()' , ( ) => {
1818 const mapper = jest . fn ( ) . mockImplementation ( largerThanTwo ) ;
1919
2020 inputArr . some ( mapper ) ;
@@ -40,7 +40,7 @@ describe('asyncSomeStrict()', () => {
4040 } ) ;
4141 } ) ;
4242
43- it ( 'assertions below are valid for synchronous .map()' , ( ) => {
43+ it . skip ( 'assertions below are valid for synchronous .map()' , ( ) => {
4444 const [ arr , pushDuplicate ] = makePushDuplicate ( ) ;
4545 const mapper = jest . fn ( ) . mockImplementation ( pushDuplicate ) ;
4646
@@ -60,7 +60,7 @@ describe('asyncSomeStrict()', () => {
6060 expect ( arr ) . toEqual ( doubleInputArr ) ;
6161 } ) ;
6262
63- it ( 'assertions below are valid for synchronous .some()' , ( ) => {
63+ it . skip ( 'assertions below are valid for synchronous .some()' , ( ) => {
6464 const mapper = jest . fn ( ) . mockImplementation ( largerThanTwo ) ;
6565
6666 const result = inputArr . some ( mapper ) ;
@@ -76,7 +76,7 @@ describe('asyncSomeStrict()', () => {
7676 expect ( result ) . toEqual ( true ) ;
7777 } ) ;
7878
79- it ( 'assertions below are valid for synchronous .some()' , ( ) => {
79+ it . skip ( 'assertions below are valid for synchronous .some()' , ( ) => {
8080 const mapper = jest . fn ( ) . mockImplementation ( largerThanOneHundred ) ;
8181
8282 const result = inputArr . some ( mapper ) ;
0 commit comments