mirror of https://github.com/Seich/Beau.git
28 lines
360 B
YAML
28 lines
360 B
YAML
version: 1
|
|
endpoint: https://httpbin.org/
|
|
|
|
cookiejar: true
|
|
environment:
|
|
params:
|
|
name: David
|
|
|
|
GET /anything:
|
|
alias: anything
|
|
payload:
|
|
name: $env.params.name
|
|
|
|
GET /cookies/set:
|
|
alias: set-cookies
|
|
params:
|
|
hello: World
|
|
|
|
GET /status/418:
|
|
alias: teapot
|
|
|
|
POST /post:
|
|
alias: post
|
|
formdata:
|
|
file: $[createReadStream('./github.yml')]
|
|
|
|
|