New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mini-application

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-application - npm Package Compare versions

Comparing version

to
1.0.2

test/extend-tests.js

2

package.json
{
"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");
});
});
```