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 f86640b commit b4c1739Copy full SHA for b4c1739
topics/about_asserts.js
@@ -2,11 +2,11 @@
2
module("About Asserts (topics/about_asserts.js)");
3
4
test("ok", function() {
5
- ok(__, 'what will satisfy the ok assertion?');
+ ok(__ === true, 'what will satisfy the ok assertion?');
6
});
7
8
-test("not", function() {
9
- not(__, 'what is a false value?');
+test("not ok", function() {
+ ok(__ === false, 'what is a false value?');
10
11
12
test("equals", function() {
0 commit comments