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

Fix exec test to restart helper server before each test

This commit is contained in:
Nick O'Leary 2015-07-05 23:02:10 +01:00
parent bac4beae03
commit 39df80bf99

View File

@ -23,7 +23,7 @@ var child_process = require('child_process');
describe('exec node', function() { describe('exec node', function() {
before(function(done) { beforeEach(function(done) {
helper.startServer(done); helper.startServer(done);
}); });