1
0
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:
Dave Conway-Jones 2017-06-13 20:34:01 +01:00
parent 652d857dd6
commit 3add95128d
No known key found for this signature in database
GPG Key ID: 81B04231572A9A2D
2 changed files with 3 additions and 3 deletions

View File

@ -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" : {
}, },

View File

@ -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});
}); });
}); });