Skip to content

Commit

Permalink
Bump jest from 28.1.0 to 28.1.3 (#1182)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jul 31, 2022
1 parent d72fa02 commit 3ad2fc7
Show file tree
Hide file tree
Showing 3 changed files with 436 additions and 419 deletions.
132 changes: 66 additions & 66 deletions dist/index.js
Expand Up @@ -111796,71 +111796,6 @@ function onceStrict (fn) {
}


/***/ }),

/***/ 57684:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";

const pTry = __nccwpck_require__(80746);

const pLimit = concurrency => {
if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
return Promise.reject(new TypeError('Expected `concurrency` to be a number from 1 and up'));
}

const queue = [];
let activeCount = 0;

const next = () => {
activeCount--;

if (queue.length > 0) {
queue.shift()();
}
};

const run = (fn, resolve, ...args) => {
activeCount++;

const result = pTry(fn, ...args);

resolve(result);

result.then(next, next);
};

const enqueue = (fn, resolve, ...args) => {
if (activeCount < concurrency) {
run(fn, resolve, ...args);
} else {
queue.push(run.bind(null, fn, resolve, ...args));
}
};

const generator = (fn, ...args) => new Promise(resolve => enqueue(fn, resolve, ...args));
Object.defineProperties(generator, {
activeCount: {
get: () => activeCount
},
pendingCount: {
get: () => queue.length
},
clearQueue: {
value: () => {
queue.length = 0;
}
}
});

return generator;
};

module.exports = pLimit;
module.exports["default"] = pLimit;


/***/ }),

/***/ 91855:
Expand Down Expand Up @@ -114432,14 +114367,79 @@ module.exports.sync = (iterable, options) => {
};


/***/ }),

/***/ 11305:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";

const pTry = __nccwpck_require__(80746);

const pLimit = concurrency => {
if (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {
return Promise.reject(new TypeError('Expected `concurrency` to be a number from 1 and up'));
}

const queue = [];
let activeCount = 0;

const next = () => {
activeCount--;

if (queue.length > 0) {
queue.shift()();
}
};

const run = (fn, resolve, ...args) => {
activeCount++;

const result = pTry(fn, ...args);

resolve(result);

result.then(next, next);
};

const enqueue = (fn, resolve, ...args) => {
if (activeCount < concurrency) {
run(fn, resolve, ...args);
} else {
queue.push(run.bind(null, fn, resolve, ...args));
}
};

const generator = (fn, ...args) => new Promise(resolve => enqueue(fn, resolve, ...args));
Object.defineProperties(generator, {
activeCount: {
get: () => activeCount
},
pendingCount: {
get: () => queue.length
},
clearQueue: {
value: () => {
queue.length = 0;
}
}
});

return generator;
};

module.exports = pLimit;
module.exports["default"] = pLimit;


/***/ }),

/***/ 96566:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";

const pLimit = __nccwpck_require__(57684);
const pLimit = __nccwpck_require__(11305);

class EndError extends Error {
constructor(value) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -42,7 +42,7 @@
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "8.0.1",
"jest": "28.1.0",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"mocked-env": "^1.3.5",
"nock": "13.2.9",
Expand Down

0 comments on commit 3ad2fc7

Please sign in to comment.