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