mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
1f05683fad
* bump node, electron, libcurl * bump electron-builder * stub performance, because inso imports react * bump @types/node * match up builder versions * Disable consent prompts for oidc server * bump electron and libcurl to latest * waitForCookies for oauth tests * Bump NodeJS to 16.13.0 * removes node 14 hack for BufferEncoding * Replace oidc-provider html interaction pages with a simple html form * make document cookie wait explicit Co-authored-by: David Marby <david@dmarby.se> |
||
---|---|---|
.. | ||
src | ||
.eslintignore | ||
.eslintrc.js | ||
jest.config.js | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.build.json | ||
tsconfig.json |
Insomnia Config
Design Goals
- ensure that changing the root TypeScript types will generate new config
- ensure that making a breaking change to TypeScript will cause failing tests to be updated
- run validation on the CI
Editor Integration
To get editor integration for this schema, tell your IDE about it. For example, in VS Code add the following to your .vscode/settings.json
:
{
"json.schemas": [
{
"fileMatch": [
"insomnia.config.json",
],
"url": "https://raw.githubusercontent.com/Kong/insomnia/develop/packages/insomnia-config/src/generated/schemas/insomnia.schema.json"
}
]
}