From fce7c7a32a2a2153a65a0b136bc8fb8e4585e5e8 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 24 Aug 2021 08:48:20 -0700 Subject: [PATCH] Disable flaky test (#2711) Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/2711 See failure in T98765066. Disabling for now. Reviewed By: nikoant Differential Revision: D30481963 fbshipit-source-id: 555295bbab33629250b53a194de37038fea2198a --- desktop/app/src/utils/__tests__/Idler.node.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop/app/src/utils/__tests__/Idler.node.tsx b/desktop/app/src/utils/__tests__/Idler.node.tsx index d145312f9..bf9ba9270 100644 --- a/desktop/app/src/utils/__tests__/Idler.node.tsx +++ b/desktop/app/src/utils/__tests__/Idler.node.tsx @@ -29,7 +29,8 @@ test('Idler should interrupt', async () => { } }); -test('Idler should want to idle', async () => { +// TODO(T98901996): Re-enable with flakiness fixed. +test.skip('Idler should want to idle', async () => { const idler = new IdlerImpl(100); expect(idler.shouldIdle()).toBe(false); await sleep(10);