Fix error message for missing node html file, and add test.

To close #1053
This commit is contained in:
Dave Conway-Jones
2016-11-16 22:46:01 +00:00
parent d042169f2e
commit 74f2180fa4
3 changed files with 57 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
// A test node that exports a function
module.exports = function(RED) {
function DuffNode(n) {}
RED.nodes.registerType("duff-node",DuffNode);
}