diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/README.md b/README.md index 1d24ed3..0d4a480 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # Node HTTP Proxy -This package is an HTTP proxy, written in Node.js. Spun up on a virtual machine. \ No newline at end of file +This package is an HTTP proxy, written in Node.js. Spun up on a virtual machine. + +# Testing + +To test, can either spin up the vagrant instance, or utilize the unit tests. \ No newline at end of file diff --git a/package.json b/package.json index fe619b1..790a345 100644 --- a/package.json +++ b/package.json @@ -11,5 +11,8 @@ "license": "MIT", "dependencies": { "express": "^4.16.4" + }, + "devDependencies": { + "jest": "^23.6.0" } }