DamageBDD
The tool to break your stack
Recommended way to use DamageBDD is using cURL, write the test in a plain text file and http POST to the /execute_feature endpoint.
Try now on testnet!
DamageBDD is currently on the testnet. Register for a testnet account to explore all features.
Use Curl to download and run a sample bdd feature.
Please read Terms & Conditions before use.
For step documentation and help please refer to the manual.
For pricing and services please refer to pricing
        
# download sample bdd
curl -o jsontest.feature \
https://run.damagebdd.com/features/jsontest.feature
cat jsontest.feature

# run bdd
curl -s -N --data-binary @jsontest.feature \
-H "Authorization: guest" \
'https://run.damagebdd.com/execute_feature'
        
      
This is a simple html form UI for submitting single tests.

Write the test case in the textarea below:

For example:

          
Feature: Test http testing functionality of DamageBDD `tests` endpoint

Scenario: GET request to DamageBDD run.damagebdd.com using HTTP API
Given I am using server "https://run.damagebdd.com"
When I make a GET request to "/tests/"
Then the response status must be "200"