Sorry if this is obvious, but is there a notOK or equivalent function in QUnit, if we want to assert that a method returns false?
I can\'t see a way to negate OK in
The better approach would be to use:
notOk();
as it will be more expressive than stating:
ok(!);