dotfiles/.vscode/extensions/codezombiech.gitignore-0.2.0/node_modules/github/templates/test_handler.js.tpl

10 lines
292 B
Smarty
Raw Normal View History

2016-09-24 12:12:34 +01:00
it("should successfully execute <%name%>", function(next) {
client.<%funcName%>(
<%params%>,
function(err, res) {
Assert.equal(err, null);
// other assertions go here
next();
}
);
});