Last active
June 20, 2018 16:35
-
-
Save sadick254/0b17e406637d84a89763d5e500107ae2 to your computer and use it in GitHub Desktop.
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 characters
function describe(testcase, callback) { | |
console.log(testcase); | |
callback(); | |
} | |
function it(description, callback) { | |
callback(); | |
} | |
function expect(actualVal) { | |
} | |
export default { | |
describe, | |
it, | |
expect | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment