snap-shot-core
Advanced tools
Comparing version
{ | ||
"name": "snap-shot-core", | ||
"description": "Save / load named snapshots, useful for tests", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>", | ||
@@ -14,2 +14,4 @@ "bugs": "https://github.com/bahmutov/snap-shot-core/issues", | ||
"npm test", | ||
"echo Running unit tests again to check file load", | ||
"npm test", | ||
"npm run ban" | ||
@@ -63,3 +65,10 @@ ], | ||
"release": { | ||
"analyzeCommits": "simple-commit-message" | ||
"analyzeCommits": "simple-commit-message", | ||
"verifyRelease": { | ||
"path": "dont-crack", | ||
"test-against": [ | ||
"https://github.com/bahmutov/snap-shot", | ||
"https://github.com/bahmutov/schema-shot" | ||
] | ||
} | ||
}, | ||
@@ -70,2 +79,3 @@ "devDependencies": { | ||
"deps-ok": "1.2.0", | ||
"dont-crack": "1.1.1", | ||
"git-issues": "1.3.1", | ||
@@ -83,2 +93,3 @@ "license-checker": "8.0.4", | ||
"debug": "2.6.1", | ||
"escape-quotes": "1.0.2", | ||
"lazy-ass": "1.5.0", | ||
@@ -85,0 +96,0 @@ "mkdirp": "0.5.1" |
@@ -109,2 +109,6 @@ # snap-shot-core | ||
## Debugging | ||
Run the code with `DEBUG=snap-shot-core` option to see more log messages. | ||
### Small print | ||
@@ -111,0 +115,0 @@ |
@@ -10,2 +10,3 @@ 'use strict' | ||
const vm = require('vm') | ||
const escapeQuotes = require('escape-quotes') | ||
@@ -33,2 +34,5 @@ const cwd = process.cwd() | ||
console.error(e) | ||
if (e instanceof SyntaxError) { | ||
throw e | ||
} | ||
return {} | ||
@@ -73,3 +77,3 @@ } | ||
const serialized = JSON.stringify(value, null, 2) | ||
s += `exports['${testName}'] = ${serialized}\n\n` | ||
s += `exports['${escapeQuotes(testName)}'] = ${serialized}\n\n` | ||
}) | ||
@@ -76,0 +80,0 @@ fs.writeFileSync(filename, s, 'utf8') |
@@ -46,2 +46,3 @@ 'use strict' | ||
const key = formKey(specName, index) | ||
debug('key "%s"', key) | ||
if (!(key in snapshots)) { | ||
@@ -48,0 +49,0 @@ return |
19943
2.87%402
1.26%159
2.58%5
25%12
9.09%+ Added
+ Added
+ Added