mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
59 lines
1.5 KiB
Markdown
59 lines
1.5 KiB
Markdown
|
# CLI
|
||
|
|
||
|
## Run CLI Smoke Tests
|
||
|
|
||
|
```shell
|
||
|
# Package the Inso CLI binaries
|
||
|
npm run inso-package
|
||
|
|
||
|
# Run CLI tests
|
||
|
npm run test:smoke:cli
|
||
|
```
|
||
|
|
||
|
## Debugging CLI tests using watcher
|
||
|
|
||
|
This is helpful for debugging failing api tests and changing the send-request abstraction
|
||
|
|
||
|
From project root, in separate terminals:
|
||
|
|
||
|
```sh
|
||
|
# start smoke test api
|
||
|
npm run serve --prefix packages/insomnia-smoke-test
|
||
|
|
||
|
# build send-request
|
||
|
npm run build:sr --prefix packages/insomnia
|
||
|
|
||
|
# watch inso
|
||
|
npm run start --prefix packages/insomnia-inso
|
||
|
|
||
|
# run api test
|
||
|
$PWD/packages/insomnia-inso/bin/inso run test "Echo Test Suite" --src $PWD/packages/insomnia-smoke-test/fixtures/inso-nedb --env Dev --verbose
|
||
|
```
|
||
|
|
||
|
## How to update the `inso-nedb` fixtures
|
||
|
|
||
|
Run Insomnia with `INSOMNIA_DATA_PATH` environment variable set to `fixtures/inso-nedb`, e.g.:
|
||
|
|
||
|
```bash
|
||
|
INSOMNIA_DATA_PATH=packages/insomnia-smoke-test/fixtures/inso-nedb /Applications/Insomnia.app/Contents/MacOS/Insomnia
|
||
|
```
|
||
|
|
||
|
Relaunch the app one more time, so that Insomnia compacts the database.
|
||
|
|
||
|
The `.gitignore` file will explicitly ignore certain database files, to keep the directory size down and avoid prevent sensitive data leaks.
|
||
|
|
||
|
## How to run inso with the `inso-nedb` fixture locally?
|
||
|
|
||
|
Set the `--src` argument pointed to `packages/insomnia-smoke-test/fixtures/inso-nedb`:
|
||
|
|
||
|
```bash
|
||
|
# if installed globally
|
||
|
inso --src <INSO_NEDB_PATH>
|
||
|
|
||
|
# using the package bin
|
||
|
./packages/insomnia-inso/bin/inso --src <INSO_NEDB_PATH>
|
||
|
|
||
|
# using a binary
|
||
|
./packages/insomnia-inso/binaries/insomnia-inso --src <INSO_NEDB_PATH>
|
||
|
```
|