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
This commit is contained in:
Pascal Hartig
2021-08-24 08:48:20 -07:00
committed by Facebook GitHub Bot
parent 23dd014075
commit fce7c7a32a

View File

@@ -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); const idler = new IdlerImpl(100);
expect(idler.shouldIdle()).toBe(false); expect(idler.shouldIdle()).toBe(false);
await sleep(10); await sleep(10);