├── .codecov.yml ├── .editorconfig ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── setup-deps-react-18 │ │ └── action.yml │ ├── setup-deps-rn-latest │ │ └── action.yml │ ├── setup-deps-rn-next │ │ └── action.yml │ ├── setup-deps-rn-nightly │ │ └── action.yml │ ├── setup-deps │ │ └── action.yml │ └── setup-website-deps │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── example-apps.yml │ ├── react-native-latest.yml │ ├── react-native-next.yml │ ├── react-native-nightly.yml │ └── website.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .release-it.json ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-4.11.0.cjs ├── .yarnrc.yml ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── dont-cleanup-after-each.js ├── eslint.config.mjs ├── examples ├── basic │ ├── .eslintignore │ ├── .eslintrc │ ├── .expo-shared │ │ └── assets.json │ ├── .gitignore │ ├── App.tsx │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── components │ │ ├── AnimatedView.tsx │ │ ├── Home.tsx │ │ ├── LoginForm.tsx │ │ └── __tests__ │ │ │ └── AnimatedView.test.tsx │ ├── jest-setup.ts │ ├── jest.config.js │ ├── package.json │ ├── theme.ts │ ├── tsconfig.json │ └── yarn.lock └── cookbook │ ├── .eslintignore │ ├── .eslintrc │ ├── .expo-shared │ └── assets.json │ ├── .gitignore │ ├── README.md │ ├── app.json │ ├── app │ ├── _layout.tsx │ ├── custom-render │ │ ├── WelcomeScreen.tsx │ │ ├── __tests__ │ │ │ ├── index.test.tsx │ │ │ └── test-utils.tsx │ │ ├── index.tsx │ │ └── providers │ │ │ ├── theme-provider.tsx │ │ │ └── user-provider.tsx │ ├── index.tsx │ ├── network-requests │ │ ├── PhoneBook.tsx │ │ ├── __tests__ │ │ │ ├── PhoneBook.test.tsx │ │ │ └── test-utils.ts │ │ ├── api │ │ │ ├── getAllContacts.ts │ │ │ └── getAllFavorites.ts │ │ ├── components │ │ │ ├── ContactsList.tsx │ │ │ └── FavoritesList.tsx │ │ ├── index.tsx │ │ └── types.ts │ └── state-management │ │ └── jotai │ │ ├── TaskList.tsx │ │ ├── __tests__ │ │ ├── TaskList.test.tsx │ │ └── test-utils.tsx │ │ ├── index.tsx │ │ ├── state.ts │ │ └── types.ts │ ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── gradientRNBanner.png │ ├── icon.png │ ├── readme │ │ ├── banner.png │ │ ├── home-screenshot.png │ │ └── phonebook-screenshot.png │ └── splash.png │ ├── babel.config.js │ ├── basics-tutorial-react-strict-dom │ ├── 1-basics-rsd.test.tsx │ ├── 2.1-query-variants-rsd.test.tsx │ ├── 2.2-query-predicates-rsd.test.tsx │ ├── 3-jest-matchers-rsd.test.tsx │ └── 4-events-rsd.test.tsx │ ├── basics-tutorial │ ├── 1-basics.test.tsx │ ├── 2.1-query-variants.test.tsx │ ├── 2.2-query-predicates.test.tsx │ ├── 3-jest-matchers.test.tsx │ ├── 4-events.test.tsx │ └── 5-screen-object.test.tsx │ ├── jest-setup.ts │ ├── jest.config.js │ ├── package.json │ ├── theme.ts │ ├── tsconfig.json │ └── yarn.lock ├── experiments-app ├── .gitignore ├── .prettierrc.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── index.js ├── package.json ├── src │ ├── App.tsx │ ├── MainScreen.tsx │ ├── experiments.ts │ ├── screens │ │ ├── Accessibility.tsx │ │ ├── FlatListEvents.tsx │ │ ├── PressEvents.tsx │ │ ├── ScrollViewEvents.tsx │ │ ├── SectionListEvents.tsx │ │ ├── TextInputEventPropagation.tsx │ │ └── TextInputEvents.tsx │ └── utils │ │ └── helpers.ts ├── tsconfig.json └── yarn.lock ├── flow-typed └── npm │ ├── jest_v26.x.x.js │ └── react-test-renderer_v16.x.x.js ├── jest-setup.ts ├── jest.config.js ├── matchers.d.ts ├── matchers.js ├── package.json ├── prettier.config.js ├── pure.d.ts ├── pure.js ├── src ├── __tests__ │ ├── __snapshots__ │ │ ├── render-debug.test.tsx.snap │ │ └── render.test.tsx.snap │ ├── act.test.tsx │ ├── auto-cleanup-skip.test.tsx │ ├── auto-cleanup.test.tsx │ ├── cleanup.test.tsx │ ├── config.test.ts │ ├── event-handler.test.tsx │ ├── fire-event-async.test.tsx │ ├── fire-event-textInput.test.tsx │ ├── fire-event.test.tsx │ ├── host-component-names.test.tsx │ ├── host-text-nesting.test.tsx │ ├── questionsBoard.test.tsx │ ├── react-native-animated.test.tsx │ ├── react-native-api.test.tsx │ ├── react-native-gesture-handler.test.tsx │ ├── render-async.test.tsx │ ├── render-debug.test.tsx │ ├── render-hook-async.test.tsx │ ├── render-hook.test.tsx │ ├── render-string-validation.test.tsx │ ├── render.test.tsx │ ├── screen.test.tsx │ ├── suspense-fake-timers.test.tsx │ ├── suspense.test.tsx │ ├── timers.test.ts │ ├── wait-for-element-to-be-removed.test.tsx │ ├── wait-for.test.tsx │ └── within.test.tsx ├── act.ts ├── cleanup.ts ├── config.ts ├── event-handler.ts ├── fire-event.ts ├── flush-micro-tasks.ts ├── helpers │ ├── __tests__ │ │ ├── accessiblity.test.tsx │ │ ├── component-tree.test.tsx │ │ ├── ensure-peer-deps.test.ts │ │ ├── format-element.test.tsx │ │ ├── include-hidden-elements.test.tsx │ │ ├── logger.test.ts │ │ ├── map-props.test.tsx │ │ ├── text-content.test.tsx │ │ ├── text-input.test.tsx │ │ └── timers.test.ts │ ├── accessibility.ts │ ├── component-tree.ts │ ├── debug.ts │ ├── ensure-peer-deps.ts │ ├── errors.ts │ ├── find-all.ts │ ├── format-element.ts │ ├── host-component-names.ts │ ├── logger.ts │ ├── map-props.ts │ ├── matchers │ │ ├── __tests__ │ │ │ ├── match-array-value.test.ts │ │ │ ├── match-object.test.ts │ │ │ └── match-string-value.test.ts │ │ ├── match-accessibility-state.ts │ │ ├── match-accessibility-value.ts │ │ ├── match-array-prop.ts │ │ ├── match-label-text.ts │ │ ├── match-object-prop.ts │ │ ├── match-string-prop.ts │ │ └── match-text-content.ts │ ├── object.ts │ ├── pointer-events.ts │ ├── string-validation.ts │ ├── text-content.ts │ ├── text-input.ts │ ├── timers.ts │ └── wrap-async.ts ├── index.ts ├── matchers │ ├── __tests__ │ │ ├── to-be-busy.test.tsx │ │ ├── to-be-checked.test.tsx │ │ ├── to-be-disabled.test.tsx │ │ ├── to-be-empty-element.test.tsx │ │ ├── to-be-expanded.test.tsx │ │ ├── to-be-on-the-screen.test.tsx │ │ ├── to-be-partially-checked.test.tsx │ │ ├── to-be-selected.test.tsx │ │ ├── to-be-visible.test.tsx │ │ ├── to-contain-element.test.tsx │ │ ├── to-have-accessibility-value.test.tsx │ │ ├── to-have-accessible-name.test.tsx │ │ ├── to-have-display-value.test.tsx │ │ ├── to-have-prop.test.tsx │ │ ├── to-have-style.test.tsx │ │ ├── to-have-text-content.test.tsx │ │ └── utils.test.tsx │ ├── extend-expect.ts │ ├── index.ts │ ├── to-be-busy.ts │ ├── to-be-checked.ts │ ├── to-be-disabled.ts │ ├── to-be-empty-element.ts │ ├── to-be-expanded.ts │ ├── to-be-on-the-screen.ts │ ├── to-be-partially-checked.ts │ ├── to-be-selected.ts │ ├── to-be-visible.ts │ ├── to-contain-element.ts │ ├── to-have-accessibility-value.ts │ ├── to-have-accessible-name.ts │ ├── to-have-display-value.ts │ ├── to-have-prop.ts │ ├── to-have-style.ts │ ├── to-have-text-content.ts │ ├── types.ts │ └── utils.ts ├── matches.ts ├── native-state.ts ├── pure.ts ├── queries │ ├── __tests__ │ │ ├── display-value.test.tsx │ │ ├── find-by.test.tsx │ │ ├── hint-text.test.tsx │ │ ├── label-text.test.tsx │ │ ├── make-queries.test.tsx │ │ ├── placeholder-text.test.tsx │ │ ├── role-value.test.tsx │ │ ├── role.test.tsx │ │ ├── test-id.test.tsx │ │ └── text.test.tsx │ ├── display-value.ts │ ├── hint-text.ts │ ├── label-text.ts │ ├── make-queries.ts │ ├── options.ts │ ├── placeholder-text.ts │ ├── role.ts │ ├── test-id.ts │ ├── text.ts │ ├── unsafe-props.ts │ └── unsafe-type.ts ├── react-versions.ts ├── render-act.ts ├── render-async.tsx ├── render-hook.tsx ├── render.tsx ├── screen.ts ├── test-utils │ ├── console.ts │ ├── events.ts │ └── json.ts ├── types.ts ├── user-event │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── clear.test.tsx.snap │ │ │ └── paste.test.tsx.snap │ │ ├── clear.test.tsx │ │ └── paste.test.tsx │ ├── clear.ts │ ├── event-builder │ │ ├── base.ts │ │ ├── common.ts │ │ ├── index.ts │ │ ├── scroll-view.ts │ │ └── text-input.ts │ ├── index.ts │ ├── paste.ts │ ├── press │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── longPress.test.tsx.snap │ │ │ │ └── press.test.tsx.snap │ │ │ ├── longPress.real-timers.test.tsx │ │ │ ├── longPress.test.tsx │ │ │ ├── press.real-timers.test.tsx │ │ │ └── press.test.tsx │ │ ├── index.ts │ │ └── press.ts │ ├── scroll │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── scroll-to-flat-list.test.tsx.snap │ │ │ │ └── scroll-to.test.tsx.snap │ │ │ ├── scroll-to-flat-list.test.tsx │ │ │ └── scroll-to.test.tsx │ │ ├── index.ts │ │ ├── scroll-to.ts │ │ └── utils.ts │ ├── setup │ │ ├── index.ts │ │ └── setup.ts │ ├── type │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── type-managed.test.tsx.snap │ │ │ │ └── type.test.tsx.snap │ │ │ ├── parseKeys.test.ts │ │ │ ├── type-managed.test.tsx │ │ │ └── type.test.tsx │ │ ├── index.ts │ │ ├── parse-keys.ts │ │ └── type.ts │ └── utils │ │ ├── __tests__ │ │ ├── dispatch-event.test.tsx │ │ └── wait.test.ts │ │ ├── content-size.ts │ │ ├── dispatch-event.ts │ │ ├── index.ts │ │ ├── text-range.ts │ │ └── wait.ts ├── wait-for-element-to-be-removed.ts ├── wait-for.ts └── within.ts ├── tsconfig.json ├── tsconfig.release.json ├── typings └── index.flow.js ├── website ├── .gitignore ├── .prettierrc.js ├── .yarn │ └── install-state.gz ├── docs │ ├── 12.x │ │ ├── _meta.json │ │ ├── cookbook │ │ │ ├── _meta.json │ │ │ ├── advanced │ │ │ │ ├── _meta.json │ │ │ │ └── network-requests.md │ │ │ ├── basics │ │ │ │ ├── _meta.json │ │ │ │ ├── async-tests.md │ │ │ │ └── custom-render.md │ │ │ ├── index.md │ │ │ └── state-management │ │ │ │ ├── _meta.json │ │ │ │ └── jotai.md │ │ ├── docs │ │ │ ├── _meta.json │ │ │ ├── advanced │ │ │ │ ├── _meta.json │ │ │ │ ├── testing-env.mdx │ │ │ │ └── understanding-act.mdx │ │ │ ├── api.md │ │ │ ├── api │ │ │ │ ├── _meta.json │ │ │ │ ├── events │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── fire-event.mdx │ │ │ │ │ └── user-event.mdx │ │ │ │ ├── jest-matchers.mdx │ │ │ │ ├── misc │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── accessibility.mdx │ │ │ │ │ ├── async.mdx │ │ │ │ │ ├── config.mdx │ │ │ │ │ ├── other.mdx │ │ │ │ │ └── render-hook.mdx │ │ │ │ ├── queries.mdx │ │ │ │ ├── render.mdx │ │ │ │ └── screen.mdx │ │ │ ├── guides │ │ │ │ ├── _meta.json │ │ │ │ ├── community-resources.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── how-to-query.mdx │ │ │ │ └── troubleshooting.mdx │ │ │ ├── migration │ │ │ │ ├── _meta.json │ │ │ │ ├── jest-matchers.mdx │ │ │ │ ├── previous │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── v11.mdx │ │ │ │ │ ├── v2.mdx │ │ │ │ │ ├── v7.mdx │ │ │ │ │ └── v9.mdx │ │ │ │ └── v12.mdx │ │ │ └── start │ │ │ │ ├── _meta.json │ │ │ │ ├── intro.md │ │ │ │ └── quick-start.mdx │ │ └── index.md │ ├── 13.x │ │ ├── _meta.json │ │ ├── cookbook │ │ │ ├── _meta.json │ │ │ ├── advanced │ │ │ │ ├── _meta.json │ │ │ │ └── network-requests.md │ │ │ ├── basics │ │ │ │ ├── _meta.json │ │ │ │ ├── async-tests.md │ │ │ │ └── custom-render.md │ │ │ ├── index.md │ │ │ └── state-management │ │ │ │ ├── _meta.json │ │ │ │ └── jotai.md │ │ ├── docs │ │ │ ├── _meta.json │ │ │ ├── advanced │ │ │ │ ├── _meta.json │ │ │ │ ├── testing-env.mdx │ │ │ │ ├── third-party-integration.mdx │ │ │ │ └── understanding-act.mdx │ │ │ ├── api.md │ │ │ ├── api │ │ │ │ ├── _meta.json │ │ │ │ ├── events │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── fire-event.mdx │ │ │ │ │ └── user-event.mdx │ │ │ │ ├── jest-matchers.mdx │ │ │ │ ├── misc │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── accessibility.mdx │ │ │ │ │ ├── async.mdx │ │ │ │ │ ├── config.mdx │ │ │ │ │ ├── other.mdx │ │ │ │ │ └── render-hook.mdx │ │ │ │ ├── queries.mdx │ │ │ │ ├── render.mdx │ │ │ │ └── screen.mdx │ │ │ ├── guides │ │ │ │ ├── _meta.json │ │ │ │ ├── community-resources.mdx │ │ │ │ ├── faq.mdx │ │ │ │ ├── how-to-query.mdx │ │ │ │ ├── react-19.mdx │ │ │ │ └── troubleshooting.mdx │ │ │ ├── migration │ │ │ │ ├── _meta.json │ │ │ │ ├── jest-matchers.mdx │ │ │ │ ├── previous │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── v11.mdx │ │ │ │ │ ├── v12.mdx │ │ │ │ │ ├── v2.mdx │ │ │ │ │ ├── v7.mdx │ │ │ │ │ └── v9.mdx │ │ │ │ └── v13.mdx │ │ │ └── start │ │ │ │ ├── _meta.json │ │ │ │ ├── intro.md │ │ │ │ └── quick-start.mdx │ │ └── index.md │ ├── 404.mdx │ ├── public │ │ └── img │ │ │ └── owl.png │ └── styles │ │ └── index.css ├── package.json ├── rspress.config.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup-deps-react-18/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-deps-react-18/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-deps-rn-latest/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-deps-rn-latest/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-deps-rn-next/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-deps-rn-next/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-deps-rn-nightly/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-deps-rn-nightly/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-website-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/actions/setup-website-deps/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/example-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/example-apps.yml -------------------------------------------------------------------------------- /.github/workflows/react-native-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/react-native-latest.yml -------------------------------------------------------------------------------- /.github/workflows/react-native-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/react-native-next.yml -------------------------------------------------------------------------------- /.github/workflows/react-native-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/react-native-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .yarn 3 | 4 | flow-typed/ 5 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.11.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.yarn/releases/yarn-4.11.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/babel.config.js -------------------------------------------------------------------------------- /dont-cleanup-after-each.js: -------------------------------------------------------------------------------- 1 | process.env.RNTL_SKIP_AUTO_CLEANUP = true; 2 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/basic/.eslintignore: -------------------------------------------------------------------------------- 1 | jest-setup.ts 2 | -------------------------------------------------------------------------------- /examples/basic/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@callstack" 3 | } 4 | -------------------------------------------------------------------------------- /examples/basic/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/.expo-shared/assets.json -------------------------------------------------------------------------------- /examples/basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/.gitignore -------------------------------------------------------------------------------- /examples/basic/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/App.tsx -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/__tests__/App.test.tsx -------------------------------------------------------------------------------- /examples/basic/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/app.json -------------------------------------------------------------------------------- /examples/basic/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/assets/adaptive-icon.png -------------------------------------------------------------------------------- /examples/basic/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/assets/favicon.png -------------------------------------------------------------------------------- /examples/basic/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/assets/icon.png -------------------------------------------------------------------------------- /examples/basic/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/assets/splash.png -------------------------------------------------------------------------------- /examples/basic/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/babel.config.js -------------------------------------------------------------------------------- /examples/basic/components/AnimatedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/components/AnimatedView.tsx -------------------------------------------------------------------------------- /examples/basic/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/components/Home.tsx -------------------------------------------------------------------------------- /examples/basic/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/components/LoginForm.tsx -------------------------------------------------------------------------------- /examples/basic/components/__tests__/AnimatedView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/components/__tests__/AnimatedView.test.tsx -------------------------------------------------------------------------------- /examples/basic/jest-setup.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/jest.config.js -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/theme.ts -------------------------------------------------------------------------------- /examples/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/tsconfig.json -------------------------------------------------------------------------------- /examples/basic/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/basic/yarn.lock -------------------------------------------------------------------------------- /examples/cookbook/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/.eslintignore -------------------------------------------------------------------------------- /examples/cookbook/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/.eslintrc -------------------------------------------------------------------------------- /examples/cookbook/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/.expo-shared/assets.json -------------------------------------------------------------------------------- /examples/cookbook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/.gitignore -------------------------------------------------------------------------------- /examples/cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/README.md -------------------------------------------------------------------------------- /examples/cookbook/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app.json -------------------------------------------------------------------------------- /examples/cookbook/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/_layout.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/WelcomeScreen.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/__tests__/index.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/__tests__/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/__tests__/test-utils.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/index.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/providers/theme-provider.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/custom-render/providers/user-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/custom-render/providers/user-provider.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/index.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/PhoneBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/PhoneBook.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/__tests__/PhoneBook.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/__tests__/PhoneBook.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/__tests__/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/__tests__/test-utils.ts -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/api/getAllContacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/api/getAllContacts.ts -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/api/getAllFavorites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/api/getAllFavorites.ts -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/components/ContactsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/components/ContactsList.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/components/FavoritesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/components/FavoritesList.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/index.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/network-requests/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/network-requests/types.ts -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/TaskList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/TaskList.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/__tests__/TaskList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/__tests__/TaskList.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/__tests__/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/__tests__/test-utils.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/index.tsx -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/state.ts -------------------------------------------------------------------------------- /examples/cookbook/app/state-management/jotai/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/app/state-management/jotai/types.ts -------------------------------------------------------------------------------- /examples/cookbook/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/adaptive-icon.png -------------------------------------------------------------------------------- /examples/cookbook/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/favicon.png -------------------------------------------------------------------------------- /examples/cookbook/assets/gradientRNBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/gradientRNBanner.png -------------------------------------------------------------------------------- /examples/cookbook/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/icon.png -------------------------------------------------------------------------------- /examples/cookbook/assets/readme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/readme/banner.png -------------------------------------------------------------------------------- /examples/cookbook/assets/readme/home-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/readme/home-screenshot.png -------------------------------------------------------------------------------- /examples/cookbook/assets/readme/phonebook-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/readme/phonebook-screenshot.png -------------------------------------------------------------------------------- /examples/cookbook/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/assets/splash.png -------------------------------------------------------------------------------- /examples/cookbook/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/babel.config.js -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial-react-strict-dom/1-basics-rsd.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial-react-strict-dom/1-basics-rsd.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial-react-strict-dom/2.1-query-variants-rsd.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial-react-strict-dom/2.1-query-variants-rsd.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial-react-strict-dom/2.2-query-predicates-rsd.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial-react-strict-dom/2.2-query-predicates-rsd.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial-react-strict-dom/3-jest-matchers-rsd.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial-react-strict-dom/3-jest-matchers-rsd.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial-react-strict-dom/4-events-rsd.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial-react-strict-dom/4-events-rsd.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/1-basics.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/1-basics.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/2.1-query-variants.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/2.1-query-variants.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/2.2-query-predicates.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/2.2-query-predicates.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/3-jest-matchers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/3-jest-matchers.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/4-events.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/4-events.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/basics-tutorial/5-screen-object.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/basics-tutorial/5-screen-object.test.tsx -------------------------------------------------------------------------------- /examples/cookbook/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/jest-setup.ts -------------------------------------------------------------------------------- /examples/cookbook/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/jest.config.js -------------------------------------------------------------------------------- /examples/cookbook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/package.json -------------------------------------------------------------------------------- /examples/cookbook/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/theme.ts -------------------------------------------------------------------------------- /examples/cookbook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/tsconfig.json -------------------------------------------------------------------------------- /examples/cookbook/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/examples/cookbook/yarn.lock -------------------------------------------------------------------------------- /experiments-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/.gitignore -------------------------------------------------------------------------------- /experiments-app/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/.prettierrc.js -------------------------------------------------------------------------------- /experiments-app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/app.json -------------------------------------------------------------------------------- /experiments-app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /experiments-app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/assets/favicon.png -------------------------------------------------------------------------------- /experiments-app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/assets/icon.png -------------------------------------------------------------------------------- /experiments-app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/assets/splash.png -------------------------------------------------------------------------------- /experiments-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/babel.config.js -------------------------------------------------------------------------------- /experiments-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/index.js -------------------------------------------------------------------------------- /experiments-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/package.json -------------------------------------------------------------------------------- /experiments-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/App.tsx -------------------------------------------------------------------------------- /experiments-app/src/MainScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/MainScreen.tsx -------------------------------------------------------------------------------- /experiments-app/src/experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/experiments.ts -------------------------------------------------------------------------------- /experiments-app/src/screens/Accessibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/Accessibility.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/FlatListEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/FlatListEvents.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/PressEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/PressEvents.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/ScrollViewEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/ScrollViewEvents.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/SectionListEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/SectionListEvents.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/TextInputEventPropagation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/TextInputEventPropagation.tsx -------------------------------------------------------------------------------- /experiments-app/src/screens/TextInputEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/screens/TextInputEvents.tsx -------------------------------------------------------------------------------- /experiments-app/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/src/utils/helpers.ts -------------------------------------------------------------------------------- /experiments-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/tsconfig.json -------------------------------------------------------------------------------- /experiments-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/experiments-app/yarn.lock -------------------------------------------------------------------------------- /flow-typed/npm/jest_v26.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/flow-typed/npm/jest_v26.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-test-renderer_v16.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/flow-typed/npm/react-test-renderer_v16.x.x.js -------------------------------------------------------------------------------- /jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/jest-setup.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/jest.config.js -------------------------------------------------------------------------------- /matchers.d.ts: -------------------------------------------------------------------------------- 1 | export * from './build/matchers'; 2 | -------------------------------------------------------------------------------- /matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/matchers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/prettier.config.js -------------------------------------------------------------------------------- /pure.d.ts: -------------------------------------------------------------------------------- 1 | export * from './build/pure'; 2 | -------------------------------------------------------------------------------- /pure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/pure.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/render-debug.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/__snapshots__/render-debug.test.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/render.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/__snapshots__/render.test.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/act.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/act.test.tsx -------------------------------------------------------------------------------- /src/__tests__/auto-cleanup-skip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/auto-cleanup-skip.test.tsx -------------------------------------------------------------------------------- /src/__tests__/auto-cleanup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/auto-cleanup.test.tsx -------------------------------------------------------------------------------- /src/__tests__/cleanup.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/cleanup.test.tsx -------------------------------------------------------------------------------- /src/__tests__/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/config.test.ts -------------------------------------------------------------------------------- /src/__tests__/event-handler.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/event-handler.test.tsx -------------------------------------------------------------------------------- /src/__tests__/fire-event-async.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/fire-event-async.test.tsx -------------------------------------------------------------------------------- /src/__tests__/fire-event-textInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/fire-event-textInput.test.tsx -------------------------------------------------------------------------------- /src/__tests__/fire-event.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/fire-event.test.tsx -------------------------------------------------------------------------------- /src/__tests__/host-component-names.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/host-component-names.test.tsx -------------------------------------------------------------------------------- /src/__tests__/host-text-nesting.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/host-text-nesting.test.tsx -------------------------------------------------------------------------------- /src/__tests__/questionsBoard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/questionsBoard.test.tsx -------------------------------------------------------------------------------- /src/__tests__/react-native-animated.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/react-native-animated.test.tsx -------------------------------------------------------------------------------- /src/__tests__/react-native-api.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/react-native-api.test.tsx -------------------------------------------------------------------------------- /src/__tests__/react-native-gesture-handler.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/react-native-gesture-handler.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render-async.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render-async.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render-debug.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render-debug.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render-hook-async.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render-hook-async.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render-hook.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render-hook.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render-string-validation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render-string-validation.test.tsx -------------------------------------------------------------------------------- /src/__tests__/render.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/render.test.tsx -------------------------------------------------------------------------------- /src/__tests__/screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/screen.test.tsx -------------------------------------------------------------------------------- /src/__tests__/suspense-fake-timers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/suspense-fake-timers.test.tsx -------------------------------------------------------------------------------- /src/__tests__/suspense.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/suspense.test.tsx -------------------------------------------------------------------------------- /src/__tests__/timers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/timers.test.ts -------------------------------------------------------------------------------- /src/__tests__/wait-for-element-to-be-removed.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/wait-for-element-to-be-removed.test.tsx -------------------------------------------------------------------------------- /src/__tests__/wait-for.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/wait-for.test.tsx -------------------------------------------------------------------------------- /src/__tests__/within.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/__tests__/within.test.tsx -------------------------------------------------------------------------------- /src/act.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/act.ts -------------------------------------------------------------------------------- /src/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/cleanup.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/event-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/event-handler.ts -------------------------------------------------------------------------------- /src/fire-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/fire-event.ts -------------------------------------------------------------------------------- /src/flush-micro-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/flush-micro-tasks.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/accessiblity.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/accessiblity.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/component-tree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/component-tree.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/ensure-peer-deps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/ensure-peer-deps.test.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/format-element.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/format-element.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/include-hidden-elements.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/include-hidden-elements.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/logger.test.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/map-props.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/map-props.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/text-content.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/text-content.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/text-input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/text-input.test.tsx -------------------------------------------------------------------------------- /src/helpers/__tests__/timers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/__tests__/timers.test.ts -------------------------------------------------------------------------------- /src/helpers/accessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/accessibility.ts -------------------------------------------------------------------------------- /src/helpers/component-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/component-tree.ts -------------------------------------------------------------------------------- /src/helpers/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/debug.ts -------------------------------------------------------------------------------- /src/helpers/ensure-peer-deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/ensure-peer-deps.ts -------------------------------------------------------------------------------- /src/helpers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/errors.ts -------------------------------------------------------------------------------- /src/helpers/find-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/find-all.ts -------------------------------------------------------------------------------- /src/helpers/format-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/format-element.ts -------------------------------------------------------------------------------- /src/helpers/host-component-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/host-component-names.ts -------------------------------------------------------------------------------- /src/helpers/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/logger.ts -------------------------------------------------------------------------------- /src/helpers/map-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/map-props.ts -------------------------------------------------------------------------------- /src/helpers/matchers/__tests__/match-array-value.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/__tests__/match-array-value.test.ts -------------------------------------------------------------------------------- /src/helpers/matchers/__tests__/match-object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/__tests__/match-object.test.ts -------------------------------------------------------------------------------- /src/helpers/matchers/__tests__/match-string-value.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/__tests__/match-string-value.test.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-accessibility-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-accessibility-state.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-accessibility-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-accessibility-value.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-array-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-array-prop.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-label-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-label-text.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-object-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-object-prop.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-string-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-string-prop.ts -------------------------------------------------------------------------------- /src/helpers/matchers/match-text-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/matchers/match-text-content.ts -------------------------------------------------------------------------------- /src/helpers/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/object.ts -------------------------------------------------------------------------------- /src/helpers/pointer-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/pointer-events.ts -------------------------------------------------------------------------------- /src/helpers/string-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/string-validation.ts -------------------------------------------------------------------------------- /src/helpers/text-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/text-content.ts -------------------------------------------------------------------------------- /src/helpers/text-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/text-input.ts -------------------------------------------------------------------------------- /src/helpers/timers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/timers.ts -------------------------------------------------------------------------------- /src/helpers/wrap-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/helpers/wrap-async.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-busy.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-busy.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-checked.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-checked.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-disabled.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-disabled.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-empty-element.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-empty-element.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-expanded.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-expanded.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-on-the-screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-on-the-screen.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-partially-checked.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-partially-checked.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-selected.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-selected.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-be-visible.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-be-visible.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-contain-element.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-contain-element.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-accessibility-value.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-accessibility-value.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-accessible-name.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-accessible-name.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-display-value.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-display-value.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-prop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-prop.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-style.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-style.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/to-have-text-content.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/to-have-text-content.test.tsx -------------------------------------------------------------------------------- /src/matchers/__tests__/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/__tests__/utils.test.tsx -------------------------------------------------------------------------------- /src/matchers/extend-expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/extend-expect.ts -------------------------------------------------------------------------------- /src/matchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/index.ts -------------------------------------------------------------------------------- /src/matchers/to-be-busy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-busy.ts -------------------------------------------------------------------------------- /src/matchers/to-be-checked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-checked.ts -------------------------------------------------------------------------------- /src/matchers/to-be-disabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-disabled.ts -------------------------------------------------------------------------------- /src/matchers/to-be-empty-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-empty-element.ts -------------------------------------------------------------------------------- /src/matchers/to-be-expanded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-expanded.ts -------------------------------------------------------------------------------- /src/matchers/to-be-on-the-screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-on-the-screen.ts -------------------------------------------------------------------------------- /src/matchers/to-be-partially-checked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-partially-checked.ts -------------------------------------------------------------------------------- /src/matchers/to-be-selected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-selected.ts -------------------------------------------------------------------------------- /src/matchers/to-be-visible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-be-visible.ts -------------------------------------------------------------------------------- /src/matchers/to-contain-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-contain-element.ts -------------------------------------------------------------------------------- /src/matchers/to-have-accessibility-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-accessibility-value.ts -------------------------------------------------------------------------------- /src/matchers/to-have-accessible-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-accessible-name.ts -------------------------------------------------------------------------------- /src/matchers/to-have-display-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-display-value.ts -------------------------------------------------------------------------------- /src/matchers/to-have-prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-prop.ts -------------------------------------------------------------------------------- /src/matchers/to-have-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-style.ts -------------------------------------------------------------------------------- /src/matchers/to-have-text-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/to-have-text-content.ts -------------------------------------------------------------------------------- /src/matchers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/types.ts -------------------------------------------------------------------------------- /src/matchers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matchers/utils.ts -------------------------------------------------------------------------------- /src/matches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/matches.ts -------------------------------------------------------------------------------- /src/native-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/native-state.ts -------------------------------------------------------------------------------- /src/pure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/pure.ts -------------------------------------------------------------------------------- /src/queries/__tests__/display-value.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/display-value.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/find-by.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/find-by.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/hint-text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/hint-text.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/label-text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/label-text.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/make-queries.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/make-queries.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/placeholder-text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/placeholder-text.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/role-value.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/role-value.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/role.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/role.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/test-id.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/test-id.test.tsx -------------------------------------------------------------------------------- /src/queries/__tests__/text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/__tests__/text.test.tsx -------------------------------------------------------------------------------- /src/queries/display-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/display-value.ts -------------------------------------------------------------------------------- /src/queries/hint-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/hint-text.ts -------------------------------------------------------------------------------- /src/queries/label-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/label-text.ts -------------------------------------------------------------------------------- /src/queries/make-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/make-queries.ts -------------------------------------------------------------------------------- /src/queries/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/options.ts -------------------------------------------------------------------------------- /src/queries/placeholder-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/placeholder-text.ts -------------------------------------------------------------------------------- /src/queries/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/role.ts -------------------------------------------------------------------------------- /src/queries/test-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/test-id.ts -------------------------------------------------------------------------------- /src/queries/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/text.ts -------------------------------------------------------------------------------- /src/queries/unsafe-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/unsafe-props.ts -------------------------------------------------------------------------------- /src/queries/unsafe-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/queries/unsafe-type.ts -------------------------------------------------------------------------------- /src/react-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/react-versions.ts -------------------------------------------------------------------------------- /src/render-act.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/render-act.ts -------------------------------------------------------------------------------- /src/render-async.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/render-async.tsx -------------------------------------------------------------------------------- /src/render-hook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/render-hook.tsx -------------------------------------------------------------------------------- /src/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/render.tsx -------------------------------------------------------------------------------- /src/screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/screen.ts -------------------------------------------------------------------------------- /src/test-utils/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/test-utils/console.ts -------------------------------------------------------------------------------- /src/test-utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/test-utils/events.ts -------------------------------------------------------------------------------- /src/test-utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/test-utils/json.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/user-event/__tests__/__snapshots__/clear.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/__tests__/__snapshots__/clear.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/__tests__/__snapshots__/paste.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/__tests__/__snapshots__/paste.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/__tests__/clear.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/__tests__/clear.test.tsx -------------------------------------------------------------------------------- /src/user-event/__tests__/paste.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/__tests__/paste.test.tsx -------------------------------------------------------------------------------- /src/user-event/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/clear.ts -------------------------------------------------------------------------------- /src/user-event/event-builder/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/event-builder/base.ts -------------------------------------------------------------------------------- /src/user-event/event-builder/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/event-builder/common.ts -------------------------------------------------------------------------------- /src/user-event/event-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/event-builder/index.ts -------------------------------------------------------------------------------- /src/user-event/event-builder/scroll-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/event-builder/scroll-view.ts -------------------------------------------------------------------------------- /src/user-event/event-builder/text-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/event-builder/text-input.ts -------------------------------------------------------------------------------- /src/user-event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/index.ts -------------------------------------------------------------------------------- /src/user-event/paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/paste.ts -------------------------------------------------------------------------------- /src/user-event/press/__tests__/__snapshots__/longPress.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/__snapshots__/longPress.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/press/__tests__/__snapshots__/press.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/__snapshots__/press.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/press/__tests__/longPress.real-timers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/longPress.real-timers.test.tsx -------------------------------------------------------------------------------- /src/user-event/press/__tests__/longPress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/longPress.test.tsx -------------------------------------------------------------------------------- /src/user-event/press/__tests__/press.real-timers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/press.real-timers.test.tsx -------------------------------------------------------------------------------- /src/user-event/press/__tests__/press.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/__tests__/press.test.tsx -------------------------------------------------------------------------------- /src/user-event/press/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/index.ts -------------------------------------------------------------------------------- /src/user-event/press/press.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/press/press.ts -------------------------------------------------------------------------------- /src/user-event/scroll/__tests__/__snapshots__/scroll-to-flat-list.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/__tests__/__snapshots__/scroll-to-flat-list.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/scroll/__tests__/__snapshots__/scroll-to.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/__tests__/__snapshots__/scroll-to.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/scroll/__tests__/scroll-to-flat-list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/__tests__/scroll-to-flat-list.test.tsx -------------------------------------------------------------------------------- /src/user-event/scroll/__tests__/scroll-to.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/__tests__/scroll-to.test.tsx -------------------------------------------------------------------------------- /src/user-event/scroll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/index.ts -------------------------------------------------------------------------------- /src/user-event/scroll/scroll-to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/scroll-to.ts -------------------------------------------------------------------------------- /src/user-event/scroll/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/scroll/utils.ts -------------------------------------------------------------------------------- /src/user-event/setup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/setup/index.ts -------------------------------------------------------------------------------- /src/user-event/setup/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/setup/setup.ts -------------------------------------------------------------------------------- /src/user-event/type/__tests__/__snapshots__/type-managed.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/__tests__/__snapshots__/type-managed.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/type/__tests__/__snapshots__/type.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/__tests__/__snapshots__/type.test.tsx.snap -------------------------------------------------------------------------------- /src/user-event/type/__tests__/parseKeys.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/__tests__/parseKeys.test.ts -------------------------------------------------------------------------------- /src/user-event/type/__tests__/type-managed.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/__tests__/type-managed.test.tsx -------------------------------------------------------------------------------- /src/user-event/type/__tests__/type.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/__tests__/type.test.tsx -------------------------------------------------------------------------------- /src/user-event/type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/index.ts -------------------------------------------------------------------------------- /src/user-event/type/parse-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/parse-keys.ts -------------------------------------------------------------------------------- /src/user-event/type/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/type/type.ts -------------------------------------------------------------------------------- /src/user-event/utils/__tests__/dispatch-event.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/__tests__/dispatch-event.test.tsx -------------------------------------------------------------------------------- /src/user-event/utils/__tests__/wait.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/__tests__/wait.test.ts -------------------------------------------------------------------------------- /src/user-event/utils/content-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/content-size.ts -------------------------------------------------------------------------------- /src/user-event/utils/dispatch-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/dispatch-event.ts -------------------------------------------------------------------------------- /src/user-event/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/index.ts -------------------------------------------------------------------------------- /src/user-event/utils/text-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/text-range.ts -------------------------------------------------------------------------------- /src/user-event/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/user-event/utils/wait.ts -------------------------------------------------------------------------------- /src/wait-for-element-to-be-removed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/wait-for-element-to-be-removed.ts -------------------------------------------------------------------------------- /src/wait-for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/wait-for.ts -------------------------------------------------------------------------------- /src/within.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/src/within.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/tsconfig.release.json -------------------------------------------------------------------------------- /typings/index.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/typings/index.flow.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/.prettierrc.js -------------------------------------------------------------------------------- /website/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/.yarn/install-state.gz -------------------------------------------------------------------------------- /website/docs/12.x/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/advanced/_meta.json: -------------------------------------------------------------------------------- 1 | ["network-requests"] 2 | -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/advanced/network-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/advanced/network-requests.md -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/basics/_meta.json: -------------------------------------------------------------------------------- 1 | ["async-tests", "custom-render"] 2 | -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/basics/async-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/basics/async-tests.md -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/basics/custom-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/basics/custom-render.md -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/index.md -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/state-management/_meta.json: -------------------------------------------------------------------------------- 1 | ["jotai"] 2 | -------------------------------------------------------------------------------- /website/docs/12.x/cookbook/state-management/jotai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/cookbook/state-management/jotai.md -------------------------------------------------------------------------------- /website/docs/12.x/docs/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/advanced/_meta.json: -------------------------------------------------------------------------------- 1 | ["testing-env", "understanding-act"] 2 | -------------------------------------------------------------------------------- /website/docs/12.x/docs/advanced/testing-env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/advanced/testing-env.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/advanced/understanding-act.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/advanced/understanding-act.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api.md -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/events/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/events/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/events/fire-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/events/fire-event.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/events/user-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/events/user-event.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/jest-matchers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/jest-matchers.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/accessibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/accessibility.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/async.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/async.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/config.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/other.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/other.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/misc/render-hook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/misc/render-hook.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/queries.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/render.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/render.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/api/screen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/api/screen.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/guides/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/guides/community-resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/guides/community-resources.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/guides/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/guides/faq.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/guides/how-to-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/guides/how-to-query.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/guides/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/guides/troubleshooting.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/jest-matchers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/jest-matchers.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/previous/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/previous/_meta.json -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/previous/v11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/previous/v11.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/previous/v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/previous/v2.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/previous/v7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/previous/v7.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/previous/v9.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/previous/v9.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/migration/v12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/migration/v12.mdx -------------------------------------------------------------------------------- /website/docs/12.x/docs/start/_meta.json: -------------------------------------------------------------------------------- 1 | ["intro", "quick-start"] 2 | -------------------------------------------------------------------------------- /website/docs/12.x/docs/start/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/start/intro.md -------------------------------------------------------------------------------- /website/docs/12.x/docs/start/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/docs/start/quick-start.mdx -------------------------------------------------------------------------------- /website/docs/12.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/12.x/index.md -------------------------------------------------------------------------------- /website/docs/13.x/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/advanced/_meta.json: -------------------------------------------------------------------------------- 1 | ["network-requests"] 2 | -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/advanced/network-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/advanced/network-requests.md -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/basics/_meta.json: -------------------------------------------------------------------------------- 1 | ["async-tests", "custom-render"] 2 | -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/basics/async-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/basics/async-tests.md -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/basics/custom-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/basics/custom-render.md -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/index.md -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/state-management/_meta.json: -------------------------------------------------------------------------------- 1 | ["jotai"] 2 | -------------------------------------------------------------------------------- /website/docs/13.x/cookbook/state-management/jotai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/cookbook/state-management/jotai.md -------------------------------------------------------------------------------- /website/docs/13.x/docs/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/advanced/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/advanced/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/advanced/testing-env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/advanced/testing-env.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/advanced/third-party-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/advanced/third-party-integration.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/advanced/understanding-act.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/advanced/understanding-act.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api.md -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/events/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/events/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/events/fire-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/events/fire-event.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/events/user-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/events/user-event.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/jest-matchers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/jest-matchers.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/accessibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/accessibility.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/async.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/async.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/config.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/other.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/other.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/misc/render-hook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/misc/render-hook.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/queries.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/render.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/render.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/api/screen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/api/screen.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/community-resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/community-resources.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/faq.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/how-to-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/how-to-query.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/react-19.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/react-19.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/guides/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/guides/troubleshooting.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/jest-matchers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/jest-matchers.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/_meta.json -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/v11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/v11.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/v12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/v12.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/v2.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/v7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/v7.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/previous/v9.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/previous/v9.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/migration/v13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/migration/v13.mdx -------------------------------------------------------------------------------- /website/docs/13.x/docs/start/_meta.json: -------------------------------------------------------------------------------- 1 | ["intro", "quick-start"] 2 | -------------------------------------------------------------------------------- /website/docs/13.x/docs/start/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/start/intro.md -------------------------------------------------------------------------------- /website/docs/13.x/docs/start/quick-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/docs/start/quick-start.mdx -------------------------------------------------------------------------------- /website/docs/13.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/13.x/index.md -------------------------------------------------------------------------------- /website/docs/404.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/404.mdx -------------------------------------------------------------------------------- /website/docs/public/img/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/public/img/owl.png -------------------------------------------------------------------------------- /website/docs/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/docs/styles/index.css -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/package.json -------------------------------------------------------------------------------- /website/rspress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/rspress.config.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-testing-library/HEAD/yarn.lock --------------------------------------------------------------------------------