kizu 3.6.3 → 3.6.4
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.
- package/dist/output.js +1 -1
- package/package.json +1 -1
package/dist/output.js
CHANGED
|
@@ -77,7 +77,7 @@ function filterStackTrace(stack) {
|
|
|
77
77
|
/at Generator.next \(<anonymous>\)/,
|
|
78
78
|
/at new Promise \(<anonymous>\)/,
|
|
79
79
|
/assertions\/index.[ts|js]{2}/,
|
|
80
|
-
/\/
|
|
80
|
+
/\/kizu\/[src|dist]{3,4}\/test.[ts|js]{2}/,
|
|
81
81
|
].reduce((combined, exp) => (new RegExp(`${combined.source}|${exp.source}`)), new RegExp('a^'));
|
|
82
82
|
return stack.split('\n').reduce((acc, line) => (!ignoreRegex.test(line) ? acc.concat([line]) : acc), []).join('\n');
|
|
83
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kizu",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.4",
|
|
4
4
|
"description": "An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|