We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 835fc62 commit d1869a4Copy full SHA for d1869a4
1 file changed
topics/about_scope.js
@@ -1,4 +1,3 @@
1
-
2
module("About Scope (topics/about_scope.js)");
3
4
thisIsAGlobalVariable = 77;
@@ -18,5 +17,5 @@ test("variables declared inside of a function", function() {
18
17
})();
19
20
equals(outerVariable, __, 'is outerVariable defined in this scope?');
21
- equals(typeof(innerVariable), "undefined", 'is innerVariable defined in this scope?');
+ equals(typeof(innerVariable), __, 'is innerVariable defined in this scope?');
22
});
0 commit comments