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 9fdadac commit e0e43ebCopy full SHA for e0e43eb
koans/AboutExpects.js
@@ -10,7 +10,7 @@ describe("About Expects", function() {
10
var expectedValue = __;
11
var actualValue = 1 + 1;
12
13
- expect(expectedValue === actualValue).toBeTruthy();
+ expect(actualValue === expectedValue).toBeTruthy();
14
});
15
16
//Some ways of asserting equality are better than others.
@@ -33,6 +33,6 @@ describe("About Expects", function() {
33
34
//Sometimes we will ask you to fill in the values
35
it("should have filled in values", function () {
36
- expect(__).toEqual(1 + 1);
+ expect(1 + 1).toEqual(__);
37
38
0 commit comments