DamageBDD

Behaviour Driven Development At Planetary Scale.

Damagebdd - Web UI


DamageBDD
The tool to break your stack

Write the test case in the textarea below:

For example here's a test that makes a post request to damagebdd's `test` endpoint:

          
Feature: Http test feature
  Scenario: Test post yaml
    Given I am using server "https://run.damagebdd.com"
    And I set "Content-Type" header to "application/json"
    When I make a POST request to "/tests/"
    """
    {
        "email": "john.doe@damagebdd.com",
        "phone": "0412345678"
    }
    """
    Then the response status must be "201"
    Then the json at path "$.email" must be "john.doe@damagebdd.com"