kizu 3.7.1 → 3.7.2
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 +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,8 @@ For more examples, see the [examples](examples) and [src](src) folders.
|
|
|
45
45
|
```bash
|
|
46
46
|
# Run all tests in the src directory and its subdirectories, and only show failures in the output.
|
|
47
47
|
npx kizu 'src/**/*.test.ts' --fail-only
|
|
48
|
+
# Run a specific test file
|
|
49
|
+
npx kizu 'src/example.test.ts'
|
|
48
50
|
```
|
|
49
51
|
|
|
50
52
|
```typescript
|
|
@@ -86,7 +88,7 @@ test('fetchData()', async (assert) => {
|
|
|
86
88
|
|
|
87
89
|
## Table of Contents
|
|
88
90
|
|
|
89
|
-
- [
|
|
91
|
+
- [Quick Start](docs/quickStart.md)
|
|
90
92
|
- [CLI](docs/cli.md)
|
|
91
93
|
- [Test API](docs/api.md)
|
|
92
94
|
- [Visual Diff Tool](docs/visualDiff.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kizu",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.2",
|
|
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",
|