Open
Conversation
broxsonl
reviewed
Feb 16, 2017
|
|
||
| const greeting = require('../lab-khalid/lib/greet.js'); | ||
| console.log('working') | ||
| greeting.hello(process.argv[2]) |
| exports.hello = function(name) { | ||
| if(arguments.length === 0) throw new Error('Name not received'); | ||
| console.log(name); | ||
| return `Hello, ${name}!`; |
| @@ -0,0 +1,9 @@ | |||
| 'use strict'; | |||
|
|
|||
| module.exports = exports = {}; | |||
There was a problem hiding this comment.
You're only putting a single function on module.exports, so you don't need to make it an empty object to attach to.
| const greeting = require('../lib/greet.js'); | ||
| const assert = require('assert'); | ||
| describe('Greeting module', function() { | ||
| describe('#hello', function(){ |
There was a problem hiding this comment.
Good use of # before the function name in your test's describe block.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.