Skip to content

Instantly share code, notes, and snippets.

@sadick254
Last active June 20, 2018 16:35
Show Gist options
  • Save sadick254/0b17e406637d84a89763d5e500107ae2 to your computer and use it in GitHub Desktop.
Save sadick254/0b17e406637d84a89763d5e500107ae2 to your computer and use it in GitHub Desktop.
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