Skip to content

Commit 25d9113

Browse files
committed
Skip self-tests in someStrict util unit test
1 parent d365202 commit 25d9113

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/some_strict.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
const firstElementLargerThanTwo = inputArr.findIndex(largerThanTwo);
1515

1616
describe('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

Comments
 (0)