1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

8 lines
191 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
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");
});
}