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

Fix exec test on node 0.10

This commit is contained in:
Nick O'Leary 2016-10-11 10:53:50 +01:00
parent 3f8e42e510
commit 22e1bafe1b

View File

@ -259,6 +259,7 @@ describe('exec node', function() {
n4.on("input", function(msg) {
try {
msg.should.have.property("payload");
should.not.be.null(msg.payload);
msg.payload.should.be.a.Number();
msg.payload.should.equal(0);
done();