From 6859249a1d5cac1bb4a636d2a535a7a4d667434c Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Tue, 19 Nov 2024 03:04:06 -0800 Subject: [PATCH] Increase timeout for directory deletion test Summary: Attempt to fix intermittent test failures internally on the Watchman flavour of this test, running under Linux. Changelog: Internal Reviewed By: vzaidman Differential Revision: D66161654 fbshipit-source-id: c5388e33e3fb341b416dac5d64e83f7422740c7c --- .../metro-file-map/src/watchers/__tests__/integration-test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/metro-file-map/src/watchers/__tests__/integration-test.js b/packages/metro-file-map/src/watchers/__tests__/integration-test.js index 3c6cf4751f..3b72008300 100644 --- a/packages/metro-file-map/src/watchers/__tests__/integration-test.js +++ b/packages/metro-file-map/src/watchers/__tests__/integration-test.js @@ -267,6 +267,8 @@ describe.each(Object.keys(WATCHERS))( {rejectUnexpected: true}, ); }, + // We see occasional failures in CI with default 5s timeout. + 30000, ); }, );