fix(test): increase timeout on sighup test

This commit is contained in:
Gareth Jones 2018-02-12 07:52:21 +11:00
parent 1e952ffd56
commit 83aca5b9d7

View File

@ -45,5 +45,5 @@ test('file appender SIGHUP', (t) => {
t.equal(openCalled, 1, 'open should be called once');
t.equal(closeCalled, 1, 'close should be called once');
t.end();
}, 10);
}, 100);
});