Skip to content

Instantly share code, notes, and snippets.

@iampeterbanjo
Created October 2, 2015 11:17
Show Gist options
  • Save iampeterbanjo/48a757304237a9815cba to your computer and use it in GitHub Desktop.
Save iampeterbanjo/48a757304237a9815cba to your computer and use it in GitHub Desktop.
// output a warning or message to the console
// depending on how the test passed
function assert(test, description){
console[!!test ? 'log' : 'warn']('Test %s: returned %s', description, test);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment