32 releases
1.0.0-alpha.35 | Jun 16, 2022 |
---|---|
1.0.0-alpha.34 | Jun 15, 2021 |
1.0.0-alpha.33 | May 20, 2021 |
1.0.0-alpha.29 | Apr 13, 2021 |
0.1.0 |
|
#1699 in Development tools
85 downloads per month
535KB
3.5K
SLoC
Capter CLI
Capter is a lightweight end-to-end testing tool for APIs. It's language agnostic and can test APIs written in any language (Node.js, Go etc).
- 🧑💻 Write tests in YAML
- 🔎 Run the same tests locally, in CI, or as a cron job to monitor your live APIs
- 🏃♂️ Takes less than a minute to get started
How it works:
Create a workflow file in a .capter
folder:
# .capter/products.yml
name: products
steps:
- name: fetch all products
id: products
url: ${{ env.URL }}/api/products
assertions:
- !expect status to_equal 200
- !expect body to_be_array
- name: fetch first product
url: ${{ env.URL }}/api/posts/${{ products.response.body.0.id }}
assertions:
- !expect body.id to_equal ${{ products.response.body.0.id }}
Then run the CLI:
URL=http://localhost:3000 capter test
Demo
Getting started
Follow the instructions in the documentation to get started:
API
License
The Capter CLI is provided under the MIT License. See LICENSE for details.
Dependencies
~14–24MB
~310K SLoC