From 627ccc2fbc597633b7721a2f9a186d4d2c88f012 Mon Sep 17 00:00:00 2001 From: John Knox Date: Mon, 10 Jun 2019 03:46:57 -0700 Subject: [PATCH] Longer connection wait time Summary: I'm seeing some failures where no client is connected when we do the export. This increases the wait time before sending the SIGINT. Reviewed By: passy Differential Revision: D15716214 fbshipit-source-id: 4646ef9d1c37e491273bd9deff504675b0e4e780 --- headless-tests/__tests__/headlessIntegrationTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headless-tests/__tests__/headlessIntegrationTests.js b/headless-tests/__tests__/headlessIntegrationTests.js index fb363cc1c..9d63da643 100644 --- a/headless-tests/__tests__/headlessIntegrationTests.js +++ b/headless-tests/__tests__/headlessIntegrationTests.js @@ -60,7 +60,7 @@ const runHeadless = memoize((args: Array) => { setTimeout(() => { process.kill('SIGINT'); - }, 10000); + }, 20000); }); });