Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 243 Bytes

greaterThan.md

File metadata and controls

13 lines (7 loc) · 243 Bytes

greaterThan (aka: "above", "gt")

  • to[.not].be.greaterThan

The greaterThan assertion compares values using >.

For example:

expect(4).to.be.greaterThan(2);

There is also the gt alias for brevity:

expect(4).to.be.gt(2);