Skip to content

Instantly share code, notes, and snippets.

@VikramTiwari
Created September 20, 2019 01:26
Show Gist options
  • Save VikramTiwari/2d11b26ea92a57ece53402a8892d50fa to your computer and use it in GitHub Desktop.
Save VikramTiwari/2d11b26ea92a57ece53402a8892d50fa to your computer and use it in GitHub Desktop.
testMe.js
function testMe() {
try {
// whatever
return true
} catch (err) {
console.log(err)
return false
}
}
// `testMe` function is in a blackbox (i.e. you can't edit the function)
// write a test case which covers line 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment