YAATT is a fast, simple, JSON-native API testing tool for developers and QA engineers who hate heavy, noisy frameworks.
No GUI, no Gherkin, no Postman clutter. Just JSON โ tests โ results.
Pull the image
docker pull iamuzorr/yaatt:latest
docker run -v $(pwd)/tests:/app/tests iamuzorr/yaatt
docker run -v $(pwd)/tests:/app/tests iamuzorr/yaatt example_test.json
docker run -v $(pwd)/tests:/app/tests iamuzorr/yaatt dev
โ JSON test files - human-readable, easy to diff in PRs
โ Schema-backed - autocomplete and linting support
โ No GUI required - write tests in your favorite editor
โ Simple assertions - is_equal, is_not_empty
โ Dockerized - runs anywhere Docker runs
Test file
{
"name": "Get Products Test",
"requests": {
"get_products": {
"method": "get",
"url": "https://dummyjson.com/products/3"
}
},
"assertions": [
{
"type": "is_equals",
"property": "get_products.id",
"value": 3
}
]
}
YAATT exists to strip away complexity from API testing. Postman, Cucumber, Cypress - all have great features, but for many teams, they are too heavy, verbose, or opinionated.
YAATT keeps it simple: send requests, assert expectations, get results.
Content type
Image
Digest
sha256:51e8fbb9bโฆ
Size
42.7 MB
Last updated
4 days ago
docker pull iamuzorr/yaatt