Skip to content

Instantly share code, notes, and snippets.

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