Last active
June 20, 2018 17:15
-
-
Save sadick254/1ddc60bdf3fbdc8acefa1f9ff6d5d48a 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 it(description, callback) { | |
try { | |
callback(); | |
console.log(`\t ✓ ${description}`); | |
} catch (e) { | |
console.log(`\t x ${description}`); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment