Ignore comms heartbeat messages in comms test

This commit is contained in:
Nick O'Leary 2014-10-31 13:06:08 +00:00
parent 863b85714d
commit f0e9a0279f
1 changed files with 10 additions and 7 deletions

View File

@ -174,13 +174,16 @@ describe("comms", function() {
});
ws.on('message', function(data) {
var msg = JSON.parse(data);
msg.should.have.property('topic', 'foo');
msg.should.have.property('data', 'bar');
count++;
if (count == 5) {
clearInterval(interval);
ws.close();
done();
// It is possible a heartbeat message may arrive - so ignore them
if (msg.topic != "hb") {
msg.should.have.property('topic', 'foo');
msg.should.have.property('data', 'bar');
count++;
if (count == 5) {
clearInterval(interval);
ws.close();
done();
}
}
});
});