postman-sandbox
Advanced tools
Comparing version 3.5.3 to 3.5.4
{ | ||
"name": "postman-sandbox", | ||
"version": "3.5.3", | ||
"version": "3.5.4", | ||
"description": "Sandbox for Postman Scripts to run in NodeJS or Chrome", | ||
@@ -40,3 +40,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"ajv": "6.11.0", | ||
"ajv": "6.12.2", | ||
"assert": "2.0.0", | ||
@@ -46,5 +46,5 @@ "async": "2.6.2", | ||
"backbone": "1.4.0", | ||
"browserify": "16.5.0", | ||
"browserify": "16.5.1", | ||
"btoa": "1.2.1", | ||
"buffer": "5.4.3", | ||
"buffer": "5.6.0", | ||
"chai": "4.2.0", | ||
@@ -63,5 +63,5 @@ "chai-postman": "1.1.3", | ||
"istanbul": "0.4.5", | ||
"jquery": "3.4.1", | ||
"js-yaml": "3.13.1", | ||
"jsdoc": "3.6.3", | ||
"jquery": "3.5.1", | ||
"js-yaml": "3.14.0", | ||
"jsdoc": "3.6.4", | ||
"jsdoc-to-markdown": "5.0.3", | ||
@@ -76,11 +76,11 @@ "karma": "3.1.4", | ||
"mocha": "5.0.1", | ||
"moment": "2.24.0", | ||
"moment": "2.26.0", | ||
"packity": "0.3.2", | ||
"parse-gitignore": "1.0.1", | ||
"postman-collection": "3.6.0", | ||
"puppeteer": "2.1.1", | ||
"postman-collection": "3.6.2", | ||
"puppeteer": "1.18.1", | ||
"recursive-readdir": "2.2.2", | ||
"shelljs": "0.8.3", | ||
"sinon": "8.1.1", | ||
"sinon-chai": "3.4.0", | ||
"sinon-chai": "3.5.0", | ||
"tv4": "1.3.0", | ||
@@ -87,0 +87,0 @@ "uglifyify": "5.0.2", |
@@ -62,3 +62,9 @@ (typeof window === 'undefined' ? describe : describe.skip)('sandbox timeout', function () { | ||
expect(err).to.be.ok; | ||
expect(err).to.have.property('message', 'sandbox: execution interrupted, bridge disconnecting.'); | ||
// @note nodeVersionDiscrepancy | ||
expect(err).to.have.property('message'); | ||
expect(err.message).to.be.oneOf([ | ||
'sandbox: execution interrupted, bridge disconnecting.', | ||
'sandbox: synchronous script execution timeout' | ||
]); | ||
done(); | ||
@@ -65,0 +71,0 @@ }); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
7661133
14899