Skip to content

Commit

Permalink
Stop testing on node 7 due to unfixed bugs
Browse files Browse the repository at this point in the history
Node 7 does not include nodejs/node#11015.
Without this fix, the process is killed when proxying a connection
through HTTPS. We could try to work around this on our end, but node 7
is officially unsupported, and it seems more sensible to simply drop
support here entirely too.
  • Loading branch information
pimterry committed Nov 30, 2017
1 parent 6bbe55d commit 06b28f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
node_js:
- 'node'
- '8'
- '7'
- '6'
before_script:
- "sudo chown root /opt/google/chrome/chrome-sandbox"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ Ok, let's summarize. Mockttp lets you:

* Write **easy, fast & reliable node.js & browser HTTP integration tests**
* Fake server responses and verify requests made by your code
* **Mock HTTP requests from inside & outside your process/browser tab**, including subprocesses, native code, remote devices, and more.
* **Intercept, mock and proxy HTTPS too**, with built-in certificate generation
* **Mock HTTP requests from inside & outside your process/tab**, including subprocesses, native code, remote devices, and more
* Stub and mock requests transparently, as an **HTTP mocking proxy**, as well as serving traffic directly
* **Mock servers for node & browsers with the same code** (universal/'isomorphic' HTTP mocking)
* **Safely mock HTTP in parallel**, with autoconfiguration of ports, mock URLs and proxy settings
Expand Down

0 comments on commit 06b28f8

Please sign in to comment.