9 lines
220 B
JavaScript
Raw Normal View History

2014-08-01 22:09:40 +01:00
// A test node that exports a function which returns a rejecting promise
var when = require("when");
module.exports = function(RED) {
return when.promise(function(resolve,reject) {
reject("fail");
});
}