2020-12-07 11:49:01 +00:00

8 lines
191 B
JavaScript

// A test node that exports a function which returns a rejecting promise
module.exports = function(RED) {
return new Promise(function(resolve,reject) {
reject("fail");
});
}