From 83aca5b9d79c5dd9b236faf5fdc61c9fd73aa7f9 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Mon, 12 Feb 2018 07:52:21 +1100 Subject: [PATCH] fix(test): increase timeout on sighup test --- test/tap/file-sighup-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tap/file-sighup-test.js b/test/tap/file-sighup-test.js index 7448ae6..de41b0b 100644 --- a/test/tap/file-sighup-test.js +++ b/test/tap/file-sighup-test.js @@ -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); });