-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Add support for lightweight, declarative tests for each request. Each request can include a tests field with simple JSON assertions (status code, headers, body content, JSON path, etc.).
Expected Behavior:
- Each request config can have a
testsarray. - Each test includes a
name,type,operator(likeequals,includes), andvalue. - The system executes these tests automatically after sending the request and reports pass/fail.
Example:
{
"tests": [
{ "name": "Status is 200", "type": "status", "operator": "equals", "value": 200 },
{ "name": "Body contains username", "type": "bodyContains", "value": "username" }
]
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request