This file contains 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
/* | |
The implementation below assumes you're using Jasmine's built-in matchers. But similar matchers | |
exist in the should.js, expect.js, and chai assertion libraries which work with Mocha. | |
*/ | |
var makeSomething = function(callback) { | |
// Below is the simplest implementation that will result in the test passing. | |
// If you want a more robust implementation, you'll want to write more tests first. :) | |
throw(new Error("Missing parameters")); | |
}; |