Const
Assertion for testing if a number is greater than or equal to another number.
expect(5, 'to be greater than or equal to', 5); // passesexpect(5, 'to be at least', 3); // passesexpect(2, 'to be at least', 5); // fails Copy
expect(5, 'to be greater than or equal to', 5); // passesexpect(5, 'to be at least', 3); // passesexpect(2, 'to be at least', 5); // fails
Assertion for testing if a number is greater than or equal to another number.