-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCHANGELOG
34 lines (27 loc) · 1.14 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
v0.2.3 / 2013-??-??
-------------------
* merged in toBeEmpty() pull request #1 from sideshowcoder
* make toHave[Own]Properties accept one array as the first parameter too
* added toContainEach, which allows to compare arrays no matter of their elements order
* added toContainEachOnce
v0.2.2 / 2013-05-13
-------------------
* make toHavePropertiesWithValues work with nested objects
v0.2.1
-------------------
* added toExactlyHaveProperties
* added toHave[Own]PropertiesWithValues
v0.2.0
-------------------
* removed built version from the repo, use `make build` to build all matchers into one file
* in the browser the matchers need to be loaded each individually, the matchers.js will warn you
v0.1.2
-------------------
* Add toBeInRange(), where the value has to be between two numbers incl. the numbers themselves.
* Added toBeOneOf(), where actual is checked against a set of expected values.
* Added toBeCloseToOneOf()
* Added toStartWithEither()
* separated all matchers+tests into reasonable files
* provide a runner-dist.html which runs all tests against the built version
* added toThrowStartsWith()
* added toStart/EndWith work with arrays now too