kizu 3.6.4 → 3.6.6
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 +10 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,7 +38,9 @@ Designed to help you write simple, readable, and maintainable tests.
|
|
|
38
38
|
- Works great with [c8](https://github.com/bcoe/c8) for code coverage.
|
|
39
39
|
- Handles compilation errors gracefully.
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
## Quick Examples
|
|
42
|
+
|
|
43
|
+
For more examples, see the [examples](examples) and [src](src) folders.
|
|
42
44
|
|
|
43
45
|
```typescript
|
|
44
46
|
import {test} from 'kizu';
|
|
@@ -75,7 +77,7 @@ test('fetchData()', async (assert) => {
|
|
|
75
77
|
});
|
|
76
78
|
```
|
|
77
79
|
|
|
78
|
-
|
|
80
|
+
## Table of Contents
|
|
79
81
|
|
|
80
82
|
- [Getting Started](docs/gettingStarted.md)
|
|
81
83
|
- [Examples](#examples)
|
|
@@ -88,22 +90,19 @@ test('fetchData()', async (assert) => {
|
|
|
88
90
|
- [Sponsorship](#sponsorship)
|
|
89
91
|
- [License](LICENSE)
|
|
90
92
|
|
|
91
|
-
|
|
93
|
+
## Getting Started
|
|
92
94
|
|
|
93
95
|
To install and get started with `kizu`, see our [Getting Started](docs/gettingStarted.md) guide.
|
|
94
|
-
|
|
95
|
-
# Examples
|
|
96
|
-
|
|
97
96
|
See the [examples](examples) and [src](src) folders for more examples.
|
|
98
97
|
|
|
99
|
-
|
|
98
|
+
## Support, feedback, and contributions
|
|
100
99
|
|
|
101
100
|
- Star this repo if you like it!
|
|
102
101
|
- Submit an [issue](https://github.com/mhweiner/kizu/issues) with your problem, feature request or bug report
|
|
103
102
|
- Issue a PR against `main` and request review. Make sure all tests pass and coverage is good.
|
|
104
103
|
- Write about this project in your blog, tweet about it, or share it with your friends!
|
|
105
104
|
|
|
106
|
-
|
|
105
|
+
## Sponsorship
|
|
107
106
|
<br>
|
|
108
107
|
<picture>
|
|
109
108
|
<source srcset="docs/aeroview-white.svg" media="(prefers-color-scheme: dark)">
|
|
@@ -116,10 +115,9 @@ Aeroview is a lightning-fast, developer-friendly, AI-powered logging IDE. Get st
|
|
|
116
115
|
|
|
117
116
|
Want to sponsor this project? [Reach out](mailto:mhweiner234@gmail.com?subject=I%20want%20to%20sponsor%20kizu).
|
|
118
117
|
|
|
119
|
-
|
|
118
|
+
## Related projects
|
|
120
119
|
|
|
120
|
+
- [cjs-mock](https://github.com/mhweiner/cjs-mock): NodeJS module mocking for CJS (CommonJS) modules for unit testing purposes.
|
|
121
121
|
- [autorel](https://github.com/mhweiner/autorel): Automate semantic releases based on conventional commits. Similar to semantic-release but much simpler.
|
|
122
122
|
- [brek](https://github.com/mhweiner/brek): A powerful yet simple configuration library for Node.js. It’s structured, typed, and designed for dynamic configuration loading, making it perfect for securely managing secrets (e.g., AWS Secrets Manager).
|
|
123
|
-
- [jsout](https://github.com/mhweiner/jsout): A Syslog-compatible, small, and simple logger for Typescript/Javascript projects.
|
|
124
|
-
- [cjs-mock](https://github.com/mhweiner/cjs-mock): NodeJS module mocking for CJS (CommonJS) modules for unit testing purposes.
|
|
125
|
-
- [typura](https://github.com/aeroview/typura): Simple and extensible runtime input validation for TS/JS, written in TS.
|
|
123
|
+
- [jsout](https://github.com/mhweiner/jsout): A Syslog-compatible, small, and simple logger for Typescript/Javascript projects.
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kizu",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.6",
|
|
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",
|
|
7
7
|
"bin": {
|
|
8
|
-
"
|
|
8
|
+
"kizu": "bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
11
11
|
"files": [
|