mockaton 0.10.9 → 0.10.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Tests.js +1 -1
  2. package/package.json +1 -1
package/Tests.js CHANGED
@@ -370,7 +370,7 @@ async function testEnableFallbackSoRoutesWithoutMocksGetRelayed() {
370
370
  response.statusCode = 423
371
371
  response.end('From_Fallback_Server')
372
372
  })
373
- await promisify(fallbackServer.listen).bind(fallbackServer, 3330, '127.0.0.1')()
373
+ await promisify(fallbackServer.listen).bind(fallbackServer, 0, '127.0.0.1')()
374
374
 
375
375
  await request(API.fallback, { // Enable fallback
376
376
  method: 'PATCH',
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "A deterministic server-side for developing and testing frontend clients",
4
4
  "type": "module",
5
- "version": "0.10.9",
5
+ "version": "0.10.10",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",