-
Notifications
You must be signed in to change notification settings - Fork 13
size
Arthur Guiot edited this page Oct 22, 2017
·
1 revision
As you can imagine, this function will compare the initial value with the expected value, to know which one is larger. You can see it like: initialValue > expected
eye.test("larger", "node",
$ => $(4).isLarger(3)
)
This one is the opposite of the first one. You can see it like: initialValue < expected
eye.test("smaller", "node",
$ => $(4).isSmaller(5)
)
Don't hesitate to ask your questions