Allow Animated.parallel to accept empty element in the array

This commit is contained in:
Rui Chen
2015-07-21 15:04:02 -07:00
parent 35aa9f3b97
commit 4e33b801ca
2 changed files with 18 additions and 2 deletions

View File

@@ -205,6 +205,16 @@ describe('Animated Parallel', () => {
expect(cb).toBeCalledWith({finished: true});
});
it('works with an empty element in array', () => {
var anim1 = {start: jest.genMockFunction()};
var cb = jest.genMockFunction();
Animated.parallel([null, anim1]).start(cb);
expect(anim1.start).toBeCalled();
anim1.start.mock.calls[0][0]({finished: true});
expect(cb).toBeCalledWith({finished: true});
});
it('parellelizes well', () => {
var anim1 = {start: jest.genMockFunction()};