We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3c498 commit 1c23149Copy full SHA for 1c23149
topics/about_asserts.js
@@ -4,15 +4,15 @@ $(document).ready(function(){
4
module("About Asserts (topics/about_asserts.js)");
5
6
test("ok", function() {
7
- ok(false, 'what will satisfy the ok assertion?');
+ ok(true, 'what will satisfy the ok assertion?');
8
});
9
10
test("not", function() {
11
- not(__, 'what is a false value?');
+ not(false, 'what is a false value?');
12
13
14
test("equals", function() {
15
- equals(1+1, __, 'what will satisfy the equals assertion?');
+ equals(1+1, 2, 'what will satisfy the equals assertion?');
16
17
18
0 commit comments