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

retry exec node tests

(diff behaviour on host)
This commit is contained in:
Dave Conway-Jones 2017-03-06 16:25:38 +00:00
parent bd4c578230
commit c97812c340

View File

@ -264,7 +264,7 @@ describe('exec node', function() {
}
});
setTimeout(function() {
n1.receive({kill:"sigint"});
n1.receive({kill:"SIGINT"});
},150);
n1.receive({});
});
@ -555,7 +555,7 @@ describe('exec node', function() {
done();
});
setTimeout(function() {
n1.receive({kill:"sigquit"});
n1.receive({kill:"SIGQUIT"});
},150);
n1.receive({});
});