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.1.1

test.js

3

CHANGELOG.md

@@ -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

4

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