Const
Asserts that the subject is exactly the boolean value false.
expect(false, 'to be false'); // passesexpect(true, 'to be false'); // failsexpect(0, 'to be false'); // fails Copy
expect(false, 'to be false'); // passesexpect(true, 'to be false'); // failsexpect(0, 'to be false'); // fails
Asserts that the subject is exactly the boolean value false.