blob: e2de0c206bf3e5118b9966ead5de0c1ab029f369 [file] [log] [blame]
{
"defaultRoute": {
"responseConfiguration": {
// configure our global fake server for all the endpoints
"target": "http://localhost:${fake.server.port}"
}
},
"routes": [
{
// used to test a plain simple static endpoint - simplest case
"id": "get-simple",
"requestConfiguration": {
"method": "GET",
"prefix": "/simple"
}
},
{
/**
* used to test a very trivial post without any query param or anything else
*/
"id": "post-simple",
"requestConfiguration": {
"method": "POST",
"prefix": "/data1"
}
},
{
"id": "multipart",
"requestConfiguration": {
"method": "POST",
"prefix": "/upload1"
}
}
]
}