Beau/src
Sergio Díaz fea72dde2a
Allow urls as endpoints (#55)
* 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
```
2019-03-11 22:04:20 -06:00
..
__mocks__ Added a version mismatch warning. (#37) 2018-06-14 23:12:16 -06:00
__tests__ Allow urls as endpoints (#55) 2019-03-11 22:04:20 -06:00
beau.js Added a version mismatch warning. (#37) 2018-06-14 23:12:16 -06:00
config.js Added support for multiple request configurations. (#54) 2019-03-11 21:14:34 -06:00
plugins.js This allows extra documents in a yaml config file to be embeded as hosts.(#40) 2018-07-31 23:23:32 -06:00
request.js Allow urls as endpoints (#55) 2019-03-11 22:04:20 -06:00
requestCache.js Adding basic tests to shared utilities. (#35) 2018-06-06 16:56:12 -06:00
requestList.js Small refactoring. (#44) 2018-08-05 00:00:54 -06:00
schema.js Added tests to all CLI commands. (#28) 2018-05-22 21:42:52 -06:00
shared.js Allow urls as endpoints (#55) 2019-03-11 22:04:20 -06:00