Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created June 8, 2017 17:18
Show Gist options
  • Save bmorelli25/a1be71dc1e071ea7b9c8dbdd89277a6e to your computer and use it in GitHub Desktop.
Save bmorelli25/a1be71dc1e071ea7b9c8dbdd89277a6e to your computer and use it in GitHub Desktop.
Mocha Testing - v2
let convert = {};
convert.cToF = function(celsius) {
if(!Number.isInteger(celsius)) return undefined;
return celsius * 9 / 5 + 32;
}
convert.fToC = function(fahrenheit) {
if(!Number.isInteger(fahrenheit)) return undefined;
return (fahrenheit - 32) * 5 / 9;
}
module.exports = convert;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment