Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 281 Bytes

greaterThanOrEqual.md

File metadata and controls

13 lines (7 loc) · 281 Bytes

greaterThanOrEqual (aka: "atLeast", "ge", "gte")

  • to[.not].be.greaterThanOrEqual

The greaterThanOrEqual assertion compares values using >=.

For example:

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

There is also the ge alias for brevity:

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