mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 14:19:58 +00:00
Bump/pre-update-modules (#6087)
* bump deps * lockfiles * revert oidc bump * remove dep * refresh lock files * refresh insomnia app lock file * fix test * more lock files
This commit is contained in:
parent
c0e25d0490
commit
f8c8d93508
13119
package-lock.json
generated
13119
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -46,10 +46,11 @@
|
||||
"@jest/globals": "^28.1.0",
|
||||
"@jest/types": "^28.1.0",
|
||||
"@types/eslint": "^8.4.3",
|
||||
"@types/node": "^17.0.21",
|
||||
"@types/node": "^20.3.3",
|
||||
"@types/svgo": "^2.6.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
||||
"@typescript-eslint/parser": "^5.10.2",
|
||||
"esbuild": "^0.16.0",
|
||||
"esbuild-runner": "^2.2.1",
|
||||
"eslint": "^8.8.0",
|
||||
"eslint-config-helpers": "^1.2.0",
|
||||
|
7372
packages/insomnia-inso/package-lock.json
generated
7372
packages/insomnia-inso/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -44,7 +44,7 @@
|
||||
"@jest/globals": "^28.1.0",
|
||||
"@types/mkdirp": "^1.0.1",
|
||||
"@types/nedb": "^1.8.11",
|
||||
"@types/node": "^17.0.21",
|
||||
"@types/node": "^20.3.3",
|
||||
"@types/rimraf": "^3.0.0",
|
||||
"@types/yaml": "^1.9.7",
|
||||
"concurrently": "^7.0.0",
|
||||
|
6229
packages/insomnia-send-request/package-lock.json
generated
6229
packages/insomnia-send-request/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
8787
packages/insomnia-smoke-test/package-lock.json
generated
8787
packages/insomnia-smoke-test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -32,7 +32,7 @@
|
||||
"@types/faker": "^5.5.5",
|
||||
"@types/graphql": "^14.5.0",
|
||||
"@types/mkdirp": "^1.0.1",
|
||||
"@types/oidc-provider": "^7.8.1",
|
||||
"@types/oidc-provider": "^8.2.0",
|
||||
"@types/uuid": "^8.3.4",
|
||||
"@types/ws": "^8.5.4",
|
||||
"concurrently": "^7.0.0",
|
||||
|
3329
packages/insomnia-testing/package-lock.json
generated
3329
packages/insomnia-testing/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -9,15 +9,7 @@ import { TestResults } from './entities';
|
||||
import { Insomnia, InsomniaOptions } from './insomnia';
|
||||
import { JavaScriptReporter } from './javascript-reporter';
|
||||
|
||||
declare global {
|
||||
namespace NodeJS {
|
||||
interface Global {
|
||||
insomnia?: Insomnia;
|
||||
chai?: typeof chai;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// declare var insomnia: Insomnia;
|
||||
const runInternal = async <TReturn, TNetworkResponse>(
|
||||
testSrc: string | string[],
|
||||
options: InsomniaOptions<TNetworkResponse>,
|
||||
@ -28,7 +20,9 @@ const runInternal = async <TReturn, TNetworkResponse>(
|
||||
|
||||
// Add global `insomnia` helper.
|
||||
// This is the only way to add new globals to the Mocha environment as far as I can tell
|
||||
// @ts-expect-error -- global hack
|
||||
global.insomnia = new Insomnia(options);
|
||||
// @ts-expect-error -- global hack
|
||||
global.chai = chai;
|
||||
|
||||
const mocha: Mocha = new Mocha({
|
||||
@ -51,7 +45,9 @@ const runInternal = async <TReturn, TNetworkResponse>(
|
||||
resolve(extractResult(runner));
|
||||
|
||||
// Remove global since we don't need it anymore
|
||||
// @ts-expect-error -- global hack
|
||||
delete global.insomnia;
|
||||
// @ts-expect-error -- global hack
|
||||
delete global.chai;
|
||||
|
||||
if (keepFile && mocha.files.length) {
|
||||
|
22768
packages/insomnia/package-lock.json
generated
22768
packages/insomnia/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -46,8 +46,8 @@
|
||||
"@apideck/better-ajv-errors": "^0.2.6",
|
||||
"@apidevtools/swagger-parser": "10.1.0",
|
||||
"@getinsomnia/node-libcurl": "2.3.6-18",
|
||||
"@grpc/grpc-js": "^1.8.0",
|
||||
"@grpc/proto-loader": "^0.7.4",
|
||||
"@grpc/grpc-js": "^1.8.17",
|
||||
"@grpc/proto-loader": "^0.7.7",
|
||||
"@jest/globals": "^28.1.0",
|
||||
"@sentry/electron": "^3.0.7",
|
||||
"@stoplight/spectral-core": "^1.12.2",
|
||||
|
3952
packages/openapi-2-kong/package-lock.json
generated
3952
packages/openapi-2-kong/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user