mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
8 lines
191 B
JavaScript
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");
|
|
});
|
|
}
|