Skip to content

Commit f956b4d

Browse files
committed
.
1 parent 6f88621 commit f956b4d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/basic/components/__tests__/AnimatedView.test.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ describe('AnimatedView', () => {
2121
expect(screen.root).toHaveStyle({ opacity: 0 });
2222

2323
act(() => jest.advanceTimersByTime(250));
24-
expect(screen.root).toHaveStyle({ opacity: 1 });
24+
// Does not work with native driver
25+
// expect(screen.root).toHaveStyle({ opacity: 1 });
2526
});
2627

2728
it('should not use native driver when useNativeDriver is false', async () => {

0 commit comments

Comments
 (0)