Skip to content

Commit

Permalink
Skip flaky Animated test
Browse files Browse the repository at this point in the history
Summary:
This test is disabled internally and flaky in open source causing CI to fail. Skipping it for now.

Related to: #21517

Reviewed By: RSNara

Differential Revision: D10223498

fbshipit-source-id: 37a3798c0abb7de829bc5b59e02f23d8943da882
  • Loading branch information
elicwhite authored and facebook-github-bot committed Oct 5, 2018
1 parent 4d69431 commit 5bfa39e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Libraries/Animated/src/__tests__/Animated-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5bfa39e

Please sign in to comment.