Skip to content

Commit d967d58

Browse files
committed
chore: update deps
1 parent e204fa3 commit d967d58

File tree

3 files changed

+81
-329
lines changed

3 files changed

+81
-329
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"@babel/preset-react": "^7.25.9",
7373
"@babel/preset-typescript": "^7.26.0",
7474
"@callstack/eslint-config": "^15.0.0",
75-
"@react-native/babel-preset": "^0.76.1",
75+
"@react-native/babel-preset": "0.77.0-nightly-20241105-fe656be26",
7676
"@release-it/conventional-changelog": "^9.0.2",
7777
"@relmify/jest-serializer-strip-ansi": "^1.0.2",
7878
"@types/jest": "^29.5.14",

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

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

5252
await act(() => jest.advanceTimersByTime(250));
53-
expect(screen.root).toHaveStyle({ opacity: 1 });
53+
// Native driver does not work in Jest tests
54+
expect(screen.root).toHaveStyle({ opacity: 0 });
5455
});
5556

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

0 commit comments

Comments
 (0)