Skip to content

Commit 35d63d0

Browse files
committed
.
1 parent bcf972e commit 35d63d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/react-native-animated.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe('AnimatedView', () => {
4343
jest.useRealTimers();
4444
});
4545

46-
it('should use native driver when useNativeDriver is true', async () => {
46+
it('should use native driver when useNativeDriver is true', () => {
4747
render(
4848
<AnimatedView fadeInDuration={250} useNativeDriver={true}>
4949
Test
@@ -56,7 +56,7 @@ describe('AnimatedView', () => {
5656
// expect(screen.root).toHaveStyle({ opacity: 0 });
5757
});
5858

59-
it('should not use native driver when useNativeDriver is false', async () => {
59+
it('should not use native driver when useNativeDriver is false', () => {
6060
render(
6161
<AnimatedView fadeInDuration={250} useNativeDriver={false}>
6262
Test

0 commit comments

Comments
 (0)