kizu 3.9.0 → 3.9.1
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 +0 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -183,24 +183,6 @@ test('fetchData', async (assert) => {
|
|
|
183
183
|
To install and get started with `kizu`, see our [Getting Started](docs/gettingStarted.md) guide.
|
|
184
184
|
See the [examples](examples) and [src](src) folders for more examples.
|
|
185
185
|
|
|
186
|
-
## Why `assert.equal()` is Amazing
|
|
187
|
-
|
|
188
|
-
With just one assertion method, you can test:
|
|
189
|
-
|
|
190
|
-
✅ **Simple values**: `assert.equal(42, 42)`
|
|
191
|
-
✅ **Complex objects**: Deep comparison of nested structures
|
|
192
|
-
✅ **Pattern matching**: `assert.equal('user@example.com', /@example\.com$/)`
|
|
193
|
-
✅ **Mixed data**: Combine exact values and RegExp patterns
|
|
194
|
-
✅ **Collections**: Arrays, Maps, and Sets with full deep equality
|
|
195
|
-
✅ **Beautiful failures**: Visual diffs show exactly what's different
|
|
196
|
-
|
|
197
|
-
No need to learn multiple assertion methods or complex APIs. `assert.equal()` handles it all with elegance and power!
|
|
198
|
-
|
|
199
|
-
```typescript
|
|
200
|
-
// One assertion method to rule them all! ✨
|
|
201
|
-
assert.equal(actual, expected);
|
|
202
|
-
```
|
|
203
|
-
|
|
204
186
|
## Support, feedback, and contributions
|
|
205
187
|
|
|
206
188
|
- Star this repo if you like it!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kizu",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.1",
|
|
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",
|