mini-application
Advanced tools
Comparing version
@@ -0,1 +1,4 @@ | ||
## v1.1.1 | ||
- pinned sinon dependency to `6.1.2`, stubApp method is broken on higher versions | ||
## v1.1.0 | ||
@@ -2,0 +5,0 @@ - upgraded most of the dependencies |
{ | ||
"name": "mini-application", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Microservice stubs using Express, Sinon and Event Emitter", | ||
@@ -23,3 +23,3 @@ "main": "src/mini-application.js", | ||
"shelljs": "^0.8.2", | ||
"sinon": "^6.1.0", | ||
"sinon": "6.1.2", | ||
"superagent": "^3.8.3" | ||
@@ -26,0 +26,0 @@ }, |
@@ -80,3 +80,18 @@ const { expect } = require("chai"); | ||
it("should not mix responses", () => { | ||
miniApp.stubApp("/test").respond("test"); | ||
miniApp.stubApp("/foo").respond("foo"); | ||
return Promise.all([ | ||
request | ||
.get("http://localhost:3000/test") | ||
.then((res) => expect(res.text).to.equal("test")), | ||
request | ||
.get("http://localhost:3000/foo") | ||
.then((res) => expect(res.text).to.equal("foo")) | ||
]); | ||
}); | ||
afterEach(() => miniApp.close()); | ||
}); |
27046
2.67%21
5%586
3.17%+ Added
+ Added
+ Added
- Removed
- Removed
Updated