mirror of https://github.com/Seich/Beau.git
* Added support for multiple request configurations.
This allows multiple requests to hit the same verb+path combination.
This was previously impossible, to address it, it's now possible to pass
an array of request settings as the body of a request each request will
be added to the request list individually.
Example:
```
GET /some/path:
- alias: first
headers:
request: first
- alias: second
headers:
request: second
```
* Allows using full urls in the request key
This allows you to break out of the top-level endpoint. If you send a
full url instead of a path it'll be used instead of the top level
endpoint.
Example:
```
endpoint: http://example.com
GET /posts: get-posts
POST http://api.example.com/posts: post-post
```
|
||
|---|---|---|
| .. | ||
| __mocks__ | ||
| __tests__ | ||
| beau.js | ||
| config.js | ||
| plugins.js | ||
| request.js | ||
| requestCache.js | ||
| requestList.js | ||
| schema.js | ||
| shared.js | ||