hamjest 4.0.1 → 4.1.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 +1 -1
- package/dist/hamjest.js +2533 -2224
- package/dist/hamjest.min.js +1 -1
- package/index.js +4 -2
- package/lib/Description.js +5 -1
- package/lib/assertThat.js +1 -1
- package/lib/matchers/IsArrayEndingWith.js +70 -0
- package/lib/matchers/IsArrayStartingWith.js +67 -0
- package/lib/matchers/IsArrayWithItem.js +2 -5
- package/package.json +2 -1
- package/test/node/assertThatSpec.js +14 -0
package/README.md
CHANGED
|
@@ -122,7 +122,7 @@ Expected: is animal with name length a number greater than <5>
|
|
|
122
122
|
## Suggestions
|
|
123
123
|
Do you have an idea how to make a matcher's error description even more readable? Does Hamjest lack a crucial matcher? (I'm sure it does...)
|
|
124
124
|
|
|
125
|
-
Just send me a message (I'm [@
|
|
125
|
+
Just send me a message (I'm [@LubaRaphael on X/Twitter](https://x.com/LubaRaphael)), open a ticket or - even better - send me a pull request.
|
|
126
126
|
|
|
127
127
|
# Browser support
|
|
128
128
|
Hamjest also runs in the browser - thanks to [browserify](http://browserify.org/).
|