Skip to content

Troubleshooting

Collection/Test Not Found

Error: No collection/test suite found

Fix: - Verify working-directory path is correct - Check identifier matches exactly (case-sensitive) - For Git Sync, ensure .insomnia/ directory exists

Environment Not Found

Error: No environment identified

Fix: - Check environment name matches exactly - Ensure environment is included in export file

PR Comments Not Appearing

Checklist: - Workflow triggered by pull_request event - permissions: pull-requests: write is set - github-token provided or using default

Secrets Not Working

Fix: - Use env: block:

env:
  API_KEY: ${{ secrets.API_KEY }}
- Access in Insomnia as {{ _.API_KEY }}

SSL Certificate Errors

For self-signed certificates (dev only):

disable-cert-validation: "true"

Timeout Errors

Per-request timeout: Increase timeout for individual requests:

request-timeout: "60000"  # 60 seconds per request

Execution timeout: Increase timeout for the entire test run:

execution-timeout: "600"  # 10 minutes total

Rate Limiting

Add delay between requests:

delay-request: "1000"

Exit Codes

Code Meaning
0 All tests passed
1 One or more tests failed

Debug Mode

verbose: "true"

Help