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
This commit is contained in:
Eli White
2018-10-05 14:56:41 -07:00
committed by Facebook Github Bot
parent 4d6943168b
commit 5bfa39ece0

View File

@@ -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);