1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Handle expected closed status event in gpio tests

This commit is contained in:
Nick O'Leary 2018-08-31 21:19:26 +01:00
parent 368418cf56
commit 5800ed41f1
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -132,13 +132,19 @@ describe('RPI GPIO Node', function() {
var n1 = helper.getNode("n1"); var n1 = helper.getNode("n1");
var n2 = helper.getNode("n2"); var n2 = helper.getNode("n2");
var n3 = helper.getNode("n3"); var n3 = helper.getNode("n3");
var count = 0;
n3.on("input", function(msg) { n3.on("input", function(msg) {
try { // Only check the first status message received as it may get a
msg.should.have.property('status'); // 'closed' status as the test is tidied up.
msg.status.should.have.property('text', "rpi-gpio.status.na"); if (count === 0) {
done(); count++;
} catch(err) { try {
done(err); msg.should.have.property('status');
msg.status.should.have.property('text', "rpi-gpio.status.na");
done();
} catch(err) {
done(err);
}
} }
}); });
n1.receive({payload:"1"}); n1.receive({payload:"1"});