Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion KoansRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<script type="text/javascript" src="koans/AboutLambda.js"></script>
<script type="text/javascript" src="koans/AboutHigherOrderFunctions.js"></script>
<script type="text/javascript" src="koans/AboutInheritance.js"></script>
<script type="text/javascript" src="koans/aboutApplyingWhatWeHaveLearnt.js"></script>
<script type="text/javascript" src="koans/AboutApplyingWhatWeHaveLearnt.js"></script>

</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion koans/AboutExpects.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ describe("About Expects", function() {

//We shall contemplate truth by testing reality, via spec expectations.
it("should expect true", function() {
expect(false).toBeTruthy(); //This should be true
expect(___).toBeTruthy(); //This should be true
});

//To understand reality, we must compare our expectations against reality.
Expand Down
1 change: 1 addition & 0 deletions lib/__.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
var __ = "Fill this value in";
var ___ = false;