babel-test
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "babel-test", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "An opinionated library to make testing Babel plugins easier", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -1,1 +0,1 @@ | ||
const oof = rab => rab; | ||
const oof = rab => rab; |
@@ -1,1 +0,1 @@ | ||
var eltit = 'hello world'; | ||
var eltit = 'hello world'; |
@@ -121,3 +121,3 @@ /* eslint-disable jest/no-disabled-tests, jest/no-focused-tests */ | ||
filename: output, | ||
content: code, | ||
content: code + '\n', | ||
stack, | ||
@@ -131,6 +131,7 @@ }), | ||
// This makes sure that the stacktraces are same across machines | ||
content: stripAnsi(e.stack).replace( | ||
new RegExp(escapeRegexp(process.cwd()), 'g'), | ||
'<cwd>' | ||
), | ||
content: | ||
stripAnsi(e.stack).replace( | ||
new RegExp(escapeRegexp(process.cwd()), 'g'), | ||
'<cwd>' | ||
) + '\n', | ||
stack, | ||
@@ -137,0 +138,0 @@ }) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16335
228