diff --git a/package.json b/package.json index f8b5fe97f..d2b11be9f 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ "@babel/preset-typescript": "^7.18.6", "@callstack/eslint-config": "^13.0.1", "@relmify/jest-serializer-strip-ansi": "^1.0.2", - "@testing-library/jest-native": "^5.4.0", "@types/jest": "^29.2.3", "@types/react": "^18.2.15", "@types/react-test-renderer": "^18.0.0", diff --git a/src/__tests__/jest-native.test.tsx b/src/__tests__/jest-native.test.tsx deleted file mode 100644 index 64601f47e..000000000 --- a/src/__tests__/jest-native.test.tsx +++ /dev/null @@ -1,84 +0,0 @@ -import * as React from 'react'; -import { StyleSheet, View, Button, Text, TextInput } from 'react-native'; -import { render } from '..'; -import '@testing-library/jest-native/extend-expect'; - -const style = StyleSheet.create({ - style1: { - color: 'red', - backgroundColor: 'green', - }, -}); - -test('jest-native matchers work correctly', () => { - const { getByText, getByA11yHint } = render( - -