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.
2 parents 91d681e + 0c54e1f commit c723da2Copy full SHA for c723da2
test/index-test.js
@@ -11,15 +11,15 @@ describe('basic math functions', function () {
11
})
12
13
it("'subtract()' is a valid function", function() {
14
- expect(add).toExist
+ expect(subtract).toExist
15
16
17
- it("'multiple()' is a valid function", function() {
18
+ it("'multiply()' is a valid function", function() {
+ expect(multiply).toExist
19
20
21
it("'divide()' is a valid function", function() {
22
+ expect(divide).toExist
23
24
25
it('add(a, b) adds two numbers and returns the result', function() {
0 commit comments