kizu 3.6.2 → 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/README.md +1 -1
- package/dist/output.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
**kizu** is a fast, minimalist test runner for TypeScript and JavaScript, with a small, easy-to-learn API that lets you focus on your tests — not your tooling.
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Designed to help you write simple, readable, and maintainable tests.
|
|
15
15
|
|
|
16
16
|
## Features
|
|
17
17
|
|
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",
|