Created
November 23, 2019 12:20
-
-
Save manolingam/4bf266efaf89f007d4d30e5952bb5bb4 to your computer and use it in GitHub Desktop.
Revisions
-
manolingam created this gist
Nov 23, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ const functions = require('./functions.js') test('adds properly', () => { expect(functions.sum(1, 5)).toBe(6) }) test('subtracts properly', () => { expect(functions.subtract(1, 2)).toBe(-1) })