New tests for Trigger, catch and unknown nodes

This commit is contained in:
dceejay
2015-03-25 21:58:26 +00:00
parent 8a5c1bade5
commit 8a96dbd121
4 changed files with 381 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ module.exports = function(RED) {
this.op2 = n.op2 || "0";
this.op1type = n.op1type || "val";
this.op2type = n.op2type || "val";
this.extend = n.extend || false;
this.extend = n.extend || "false";
this.units = n.units || "ms";
this.duration = n.duration || 250;
if (this.duration <= 0) { this.duration = 0; }