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).
Create a workflow file in a .capter
folder:
```yaml
name: products steps: - name: fetch all products id: products url: ${{ env.URL }}/api/products assertions: - !assert status equal 200 - !assert body isArray
Then run the CLI:
sh
URL=http://localhost:3000 capter test
Follow the instructions in the documentation to get started:
The Capter CLI is provided under the MIT License. See LICENSE for details.