Merge pull request #172 from Oza94/fix-child-process-tests
fix random fails on tests that use child process
This commit is contained in:
commit
394286cd16
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ vows.describe('nconf/hierarchy').addBatch({
|
||||||
data += d;
|
data += d;
|
||||||
});
|
});
|
||||||
|
|
||||||
child.on('exit', function () {
|
child.on('close', function () {
|
||||||
fs.readFile(configFile, 'utf8', that.callback.bind(null, null, data));
|
fs.readFile(configFile, 'utf8', that.callback.bind(null, null, data));
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -90,7 +90,7 @@ vows.describe('nconf/hierarchy').addBatch({
|
||||||
data += d;
|
data += d;
|
||||||
});
|
});
|
||||||
|
|
||||||
child.on('exit', function() {
|
child.on('close', function() {
|
||||||
that.callback(null, data);
|
that.callback(null, data);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue