Disable sideEffect test as it's failing on GitHub

Summary: Looks like something isn't deterministic.

Reviewed By: nikoant

Differential Revision: D20725370

fbshipit-source-id: 493fa7915aba9aa7bd6cce254684ff3d0f2f7eaf
This commit is contained in:
Pascal Hartig
2020-03-30 02:33:47 -07:00
committed by Facebook GitHub Bot
parent 5ed3e8b1eb
commit 39f5a07ac4

View File

@@ -183,7 +183,8 @@ describe('sideeffect', () => {
expect(warn.mock.calls[0][0]).toContain("Side effect 'test' took");
});
test('throttles correctly', async () => {
// TODO(T64747771): Disabled as it appears to be non-deterministic.
test.skip('throttles correctly', async () => {
unsubscribe = sideEffect(
store,
{name: 'test', throttleMs: 100},