authorjapps/zerocode

Meta Data section in the scenario JSON

Open

#207 geöffnet am 16. Feb. 2019

Auf GitHub ansehen
 (20 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Java (447 Forks)auto 404
enhancementfeature-requestgood first issuehelp wanted

Repository-Metriken

Stars
 (1.010 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Objective

  • This will help to capture any comments or useful information about authors or ticket(jira story) or a test category etc.

The section could look like below-

{
    "scenarioName": "Scenario Verify Person REST apis as well as DB layer",
    "ignoreStepFailures": false,
    "steps": [
        {
            "name": "get_enitity",
            "url": "/api/v1/people/visa/{id}",
            "method": "GET",
            "request": {
            },
            "assertions": {
                "status": 200
            }
        }
    ],
    "meta": {
        "authors": ["Emma", "Sidd", "Krish"],
        "tickets": ["ISSUE-519", "GT-312"],
        "categories": ["dev", "sit1", "sit2"],
        "others":["Runs every day", "Need to speak to Security team"]
        // and so on...
    }
}

  • Show these in the reports etc.

Contributor Guide