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