Skip to content

Instantly share code, notes, and snippets.

@NickHeiner
Last active August 29, 2015 14:18
Show Gist options
  • Save NickHeiner/06b2b0ea7fe44d22745d to your computer and use it in GitHub Desktop.
Save NickHeiner/06b2b0ea7fe44d22745d to your computer and use it in GitHub Desktop.
// app code file
const constants = require('./constants');
module.exports = function getGreeting(name) {
return CONSTANTS.GREETING_PREFIX + name;
}
// test code file snippet
expect(getGreeting('Sam')).to.equal('Hi, Sam');
// constants file
module.exports = {GREETING_PREFIX: 'Hi, '};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment