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 1bc3284 commit 30a69deCopy full SHA for 30a69de
workspace/test.js
@@ -8,8 +8,8 @@ const F = _ => f => f;
8
9
describe("counter", () => {
10
it("fixed tests", () => {
11
- assert.equal(counter(T)(T)(T)(F), 3);
12
- assert.equal(counter(T)(F), 1);
13
- assert.equal(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
+ assert.numEql(counter(T)(T)(T)(F), 3);
+ assert.numEql(counter(T)(F), 1);
+ assert.numEql(counter(T)(T)(T)(T)(T)(T)(T)(F), 7);
14
});
15
0 commit comments