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

Make Trigger node timeout test 1ms more tolerable

This commit is contained in:
Nick O'Leary 2018-07-15 21:13:02 +01:00
parent 529b358c9b
commit 46acc62279
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -606,7 +606,7 @@ describe('trigger node', function() {
}
else {
msg.should.have.a.property("payload", "World");
(Date.now() - ss).should.be.greaterThan(150);
(Date.now() - ss).should.be.greaterThan(149);
done();
}
}