Generating a test plan

GET /test/plan

Get the test plan of a specific node in the parsed codebase.

Headers

Query Params

Response

{
    "happy_path": [
        "Search for a common term that matches multiple items",
        "Search for a unique term that matches exactly one item",
        "Search for a term that matches items with varying case sensitivity"
    ],
    "edge_case": [
        "Search with an empty string as the query",
        "Search with a query that matches no items",
        "Search with special characters in the query"
    ]
}

Last updated