Skip to content
This repository was archived by the owner on Aug 20, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ client.API(request, function (response) {
# Usage
[Library Usage Documentation](https://github.com/sendgrid/nodejs-http-client/blob/master/USAGE.md)

# Tests

Tests can be run through a [Docker](https://www.docker.com) container which is defined in the [docker-compose.yml](docker-compose.yml) file.

To run the tests, simply run `docker-compose up`.

<a name="roadmap"></a>
# Roadmap

Expand Down
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: "3"
services:

node-test:
image: "node:4.5.0"
working_dir: /srv/www
environment:
- NODE_ENV=production
volumes:
- ./:/srv/www
command: "npm run test"