mini-application
Advanced tools
Comparing version
{ | ||
"name": "mini-application", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "src/mini-application.js", |
@@ -56,9 +56,10 @@ # Mini Application | ||
### Use sinon helpers | ||
### Use sinon helper | ||
```js | ||
// respond with json | ||
miniApp.stubApp("/test").respond({ text: "json response" }); | ||
// or | ||
// or set the status code | ||
miniApp.stubApp("/test").respond(503); | ||
// or | ||
// or just send a text | ||
miniApp.stubApp("/test").respond("ok"); | ||
@@ -94,1 +95,23 @@ ``` | ||
``` | ||
## Extendable | ||
For easier testing custom logic can be wrapped as a class extending the MiniApplication base: | ||
```js | ||
class TestApplication extends MiniApplication { | ||
constructor(options) { | ||
super(options); | ||
this.stubApp("get", "test"); | ||
} | ||
} | ||
miniApp = new TestApplication(); | ||
miniApp.listen(3000) | ||
.then(() => { | ||
request.get("http://localhost:3000/test").end(); | ||
miniApp.on("incoming.request@GET/test", (req) => { | ||
expect(req.url).to.be.equal("/test"); | ||
}); | ||
}); | ||
``` |
15752
9.06%13
8.33%317
7.82%116
24.73%