Update checked-in dependencies
This commit is contained in:
parent
b9d85b4c34
commit
4a610e2380
3595 changed files with 129829 additions and 1065 deletions
10
node_modules/nock/README.md
generated
vendored
10
node_modules/nock/README.md
generated
vendored
|
|
@ -9,8 +9,13 @@
|
|||
[npmjs]: https://www.npmjs.com/package/nock
|
||||
[build]: https://travis-ci.org/nock/nock
|
||||
|
||||
> **Warning**
|
||||
> nock is currently not compatible with Node's experimental native `fetch` implementation. See [#2397](https://github.com/nock/nock/issues/2397)
|
||||
> **Notice**
|
||||
>
|
||||
> We have introduced experimental support for fetch. Please share your feedback with us. You can install it by:
|
||||
>
|
||||
> ```
|
||||
> npm install --save-dev nock@beta
|
||||
> ```
|
||||
|
||||
HTTP server mocking and expectations library for Node.js
|
||||
|
||||
|
|
@ -1698,6 +1703,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/all-contri
|
|||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rsaryev"><img src="https://avatars.githubusercontent.com/u/70219513?v=4?s=100" width="100px;" alt="Saryev Rustam"/><br /><sub><b>Saryev Rustam</b></sub></a><br /><a href="https://github.com/nock/nock/commits?author=rsaryev" title="Code">💻</a> <a href="https://github.com/nock/nock/commits?author=rsaryev" title="Tests">⚠️</a></td>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mikicho"><img src="https://avatars.githubusercontent.com/u/11459632?v=4?s=100" width="100px;" alt="Michael Solomon"/><br /><sub><b>Michael Solomon</b></sub></a><br /><a href="#maintenance-mikicho" title="Maintenance">🚧</a> <a href="https://github.com/nock/nock/commits?author=mikicho" title="Code">💻</a> <a href="https://github.com/nock/nock/commits?author=mikicho" title="Documentation">📖</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
|||
3
node_modules/nock/lib/intercept.js
generated
vendored
3
node_modules/nock/lib/intercept.js
generated
vendored
|
|
@ -350,7 +350,8 @@ function interceptorScopes() {
|
|||
const nestedInterceptors = Object.values(allInterceptors).map(
|
||||
i => i.interceptors,
|
||||
)
|
||||
return [].concat(...nestedInterceptors).map(i => i.scope)
|
||||
const scopes = new Set([].concat(...nestedInterceptors).map(i => i.scope))
|
||||
return [...scopes]
|
||||
}
|
||||
|
||||
function isDone() {
|
||||
|
|
|
|||
2
node_modules/nock/lib/interceptor.js
generated
vendored
2
node_modules/nock/lib/interceptor.js
generated
vendored
|
|
@ -510,7 +510,7 @@ module.exports = class Interceptor {
|
|||
strFormattingFn = common.percentDecode
|
||||
}
|
||||
|
||||
if (queries instanceof URLSearchParams) {
|
||||
if (queries instanceof URLSearchParams || typeof queries === 'string') {
|
||||
// Normalize the data into the shape that is matched against.
|
||||
// Duplicate keys are handled by combining the values into an array.
|
||||
queries = querystring.parse(queries.toString())
|
||||
|
|
|
|||
2
node_modules/nock/package.json
generated
vendored
2
node_modules/nock/package.json
generated
vendored
|
|
@ -7,7 +7,7 @@
|
|||
"testing",
|
||||
"isolation"
|
||||
],
|
||||
"version": "13.5.1",
|
||||
"version": "13.5.3",
|
||||
"author": "Pedro Teixeira <pedro.teixeira@gmail.com>",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue