2014-08-01 22:09:40 +01:00
|
|
|
// A test node that exports a function which returns a rejecting promise
|
|
|
|
|
|
|
|
module.exports = function(RED) {
|
2020-11-30 14:38:48 +00:00
|
|
|
return new Promise(function(resolve,reject) {
|
2014-08-01 22:09:40 +01:00
|
|
|
reject("fail");
|
|
|
|
});
|
|
|
|
}
|