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 ff8f175 commit ee4baf8Copy full SHA for ee4baf8
koans/AboutObjects.js
@@ -28,7 +28,7 @@ describe("About Objects", function () {
28
}
29
};
30
31
- battleCry = meglomaniac.battleCry(4);
+ var battleCry = meglomaniac.battleCry(4);
32
expect(FILL_ME_IN).toMatch(battleCry);
33
});
34
@@ -60,14 +60,14 @@ describe("About Objects", function () {
60
61
it("should have the bomb", function () {
62
63
- hasBomb = "theBomb" in meglomaniac;
+ var hasBomb = "theBomb" in meglomaniac;
64
65
expect(hasBomb).toBe(FILL_ME_IN);
66
67
68
it("should not have the detonator however", function () {
69
70
- hasDetonator = "theDetonator" in meglomaniac;
+ var hasDetonator = "theDetonator" in meglomaniac;
71
72
expect(hasDetonator).toBe(FILL_ME_IN);
73
0 commit comments