Ensures that value <= expected for number or big integer values.
value <= expected
Usage
const value = 42;expect(value).toBeLessThanOrEqual(42); Copy
const value = 42;expect(value).toBeLessThanOrEqual(42);
Internal options that provide extra context for the matcher.
Received value.
The value to compare to.
Ensures that
value <= expectedfor number or big integer values.Usage