mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Tidy up inso readme (#2363)
This commit is contained in:
parent
b571ba5755
commit
7d49e58fb8
@ -5,4 +5,3 @@
|
||||
|
||||
# Don't ignore dist folder
|
||||
!dist/*
|
||||
!assets/*
|
||||
|
@ -20,8 +20,7 @@ Typically, Insomnia database id's are quite long, for example: `wrk_012d4860c7da
|
||||
|
||||
Additionally, if the `[identifier]` argument is ommitted from the command, `inso` will search in the database for the information it needs, and prompt the user. Prompts can be disabled with the `--ci` global option.
|
||||
|
||||
![](/packages/insomnia-inso/assets/ci-demo.gif)
|
||||
![](/assets/ci-demo.gif)
|
||||
![](https://raw.githubusercontent.com/Kong/insomnia/develop/packages/insomnia-inso/assets/ci-demo.gif)
|
||||
|
||||
## Commands
|
||||
|
||||
@ -48,7 +47,8 @@ Similar to the Kong [Kubernetes](https://insomnia.rest/plugins/insomnia-plugin-k
|
||||
|
||||
#### Examples
|
||||
|
||||
When running in the [git-repo](/packages/insomnia-inso/src/db/__fixtures__/git-repo) directory
|
||||
<details>
|
||||
<summary>When running in the <a href="https://github.com/Kong/insomnia/tree/develop/packages/insomnia-inso/src/db/__fixtures__/git-repo">git-repo</a> directory</summary>
|
||||
|
||||
```
|
||||
inso generate config
|
||||
@ -63,6 +63,7 @@ inso generate config "Sample Specification" --type kubernetes
|
||||
|
||||
inso generate config spec.yaml --working-dir another/dir
|
||||
```
|
||||
</details>
|
||||
|
||||
### `$ inso lint spec [identifier]`
|
||||
|
||||
@ -72,7 +73,8 @@ Designer has the ability to lint and validate your OpenAPI specification as you
|
||||
|
||||
#### Examples
|
||||
|
||||
When running in the [git-repo](/packages/insomnia-inso/src/db/__fixtures__/git-repo) directory
|
||||
<details>
|
||||
<summary>When running in the <a href="https://github.com/Kong/insomnia/tree/develop/packages/insomnia-inso/src/db/__fixtures__/git-repo">git-repo</a> directory</summary>
|
||||
|
||||
```
|
||||
inso lint spec
|
||||
@ -81,6 +83,7 @@ inso lint spec spc_46c5a4
|
||||
|
||||
inso lint spec "Sample Specification"
|
||||
```
|
||||
</details>
|
||||
|
||||
### `$ inso run test [options] [identifier]`
|
||||
|
||||
@ -100,24 +103,34 @@ The test runner is built on top of Mocha, thus many of the options behave as the
|
||||
|
||||
#### Examples
|
||||
|
||||
When running in the [git-repo](/packages/insomnia-inso/src/db/__fixtures__/git-repo) directory.
|
||||
<details>
|
||||
<summary>When running in the <a href="https://github.com/Kong/insomnia/tree/develop/packages/insomnia-inso/src/db/__fixtures__/git-repo">git-repo</a> directory</summary>
|
||||
|
||||
Not specifying any arguments will prompt
|
||||
```
|
||||
inso run test
|
||||
```
|
||||
|
||||
# By document
|
||||
Scope by the document name or id
|
||||
```
|
||||
inso run test "Sample Specification" --env "OpenAPI env"
|
||||
inso run test spc_46c5a4 --env env_env_ca046a
|
||||
```
|
||||
|
||||
# By suite
|
||||
Scope by the a test suite name or id
|
||||
```
|
||||
inso run test "Math Suite" --env "OpenAPI env"
|
||||
inso run test uts-7f0f85 --env env_env_ca046a
|
||||
```
|
||||
|
||||
Scope by test name regex, and control test running and reporting
|
||||
```
|
||||
inso run test "Sample Specification" --test-name-pattern Math --env env_env_ca046a
|
||||
inso run test spc_46c5a4 --reporter progress --bail --keep-file
|
||||
```
|
||||
|
||||
More examples: [#2338](https://github.com/Kong/insomnia/pull/2338).
|
||||
</details>
|
||||
|
||||
## Development
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user