mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
bump rbe package for nom and fix test
This commit is contained in:
parent
652d857dd6
commit
3add95128d
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-rbe",
|
"name" : "node-red-node-rbe",
|
||||||
"version" : "0.1.9",
|
"version" : "0.1.10",
|
||||||
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
|
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -118,7 +118,7 @@ describe('rbe node', function() {
|
|||||||
msg.should.have.a.property("payload", 10);
|
msg.should.have.a.property("payload", 10);
|
||||||
}
|
}
|
||||||
else if (c == 3) {
|
else if (c == 3) {
|
||||||
msg.should.have.a.property("payload", 20);
|
msg.should.have.a.property("payload", 22);
|
||||||
done();
|
done();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -129,7 +129,7 @@ describe('rbe node', function() {
|
|||||||
n1.emit("input", {payload:8});
|
n1.emit("input", {payload:8});
|
||||||
n1.emit("input", {payload:10});
|
n1.emit("input", {payload:10});
|
||||||
n1.emit("input", {payload:15});
|
n1.emit("input", {payload:15});
|
||||||
n1.emit("input", {payload:20});
|
n1.emit("input", {payload:22});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user