From 5bfa39ece05151a4048ce1535f77201b04d104b6 Mon Sep 17 00:00:00 2001 From: Eli White Date: Fri, 5 Oct 2018 14:56:41 -0700 Subject: [PATCH] Skip flaky Animated test Summary: This test is disabled internally and flaky in open source causing CI to fail. Skipping it for now. Related to: https://github.com/facebook/react-native/issues/21517 Reviewed By: RSNara Differential Revision: D10223498 fbshipit-source-id: 37a3798c0abb7de829bc5b59e02f23d8943da882 --- Libraries/Animated/src/__tests__/Animated-test.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Libraries/Animated/src/__tests__/Animated-test.js b/Libraries/Animated/src/__tests__/Animated-test.js index 96b41083d..930d8a020 100644 --- a/Libraries/Animated/src/__tests__/Animated-test.js +++ b/Libraries/Animated/src/__tests__/Animated-test.js @@ -134,7 +134,9 @@ describe('Animated tests', () => { expect(callback).toBeCalled(); }); - it('send toValue when an underdamped spring stops', () => { + // This test is flaky and we are asking open source to fix it + // https://github.com/facebook/react-native/issues/21517 + it.skip('send toValue when an underdamped spring stops', () => { const anim = new Animated.Value(0); const listener = jest.fn(); anim.addListener(listener);