Add missing registry test resources

This commit is contained in:
Nick O'Leary
2014-08-01 22:09:40 +01:00
parent 79e9641c09
commit 882b593ba4
12 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<script type="text/x-red" data-template-name="test-node-1"></script>
<script type="text/x-red" data-help-name="test-node-1"></script>
<script type="text/javascript">RED.nodes.registerType('test-node-1',{});</script>
<style></style>

View File

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