@testing-library/react-native 12.2.0 → 12.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.DS_Store +0 -0
- package/.eslintcache +1 -1
- package/.eslintignore +1 -0
- package/build/fireEvent.js +1 -1
- package/build/fireEvent.js.map +1 -1
- package/build/helpers/component-tree.d.ts +11 -5
- package/build/helpers/component-tree.js +5 -1
- package/build/helpers/component-tree.js.map +1 -1
- package/build/helpers/findAll.d.ts +2 -1
- package/build/helpers/findAll.js +2 -1
- package/build/helpers/findAll.js.map +1 -1
- package/build/helpers/host-component-names.d.ts +11 -2
- package/build/helpers/host-component-names.js +10 -0
- package/build/helpers/host-component-names.js.map +1 -1
- package/build/helpers/matchers/matchLabelText.js +1 -1
- package/build/helpers/matchers/matchLabelText.js.map +1 -1
- package/build/queries/a11yState.js +1 -1
- package/build/queries/a11yState.js.map +1 -1
- package/build/queries/a11yValue.js +1 -1
- package/build/queries/a11yValue.js.map +1 -1
- package/build/queries/displayValue.js +5 -6
- package/build/queries/displayValue.js.map +1 -1
- package/build/queries/hintText.js +1 -1
- package/build/queries/hintText.js.map +1 -1
- package/build/queries/labelText.js +1 -1
- package/build/queries/labelText.js.map +1 -1
- package/build/queries/placeholderText.js +3 -4
- package/build/queries/placeholderText.js.map +1 -1
- package/build/queries/role.js +1 -1
- package/build/queries/role.js.map +1 -1
- package/build/queries/testId.js +3 -3
- package/build/queries/testId.js.map +1 -1
- package/build/queries/text.js +1 -2
- package/build/queries/text.js.map +1 -1
- package/build/render.js.map +1 -1
- package/build/user-event/clear.d.ts +3 -0
- package/build/user-event/clear.js +41 -0
- package/build/user-event/clear.js.map +1 -0
- package/build/user-event/index.d.ts +1 -0
- package/build/user-event/index.js +2 -1
- package/build/user-event/index.js.map +1 -1
- package/build/user-event/press/press.js +1 -4
- package/build/user-event/press/press.js.map +1 -1
- package/build/user-event/setup/setup.d.ts +14 -2
- package/build/user-event/setup/setup.js +3 -1
- package/build/user-event/setup/setup.js.map +1 -1
- package/build/user-event/type/type.d.ts +2 -1
- package/build/user-event/type/type.js +8 -4
- package/build/user-event/type/type.js.map +1 -1
- package/build/user-event/utils/host-components.d.ts +2 -0
- package/build/user-event/utils/host-components.js +11 -0
- package/build/user-event/utils/host-components.js.map +1 -0
- package/build/user-event/utils/index.d.ts +1 -0
- package/build/user-event/utils/index.js +11 -0
- package/build/user-event/utils/index.js.map +1 -1
- package/build/user-event/utils/text-range.d.ts +0 -1
- package/build/user-event/utils/text-range.js +0 -11
- package/build/user-event/utils/text-range.js.map +1 -1
- package/examples/basic/.expo/README.md +4 -6
- package/examples/basic/.expo/settings.json +2 -0
- package/examples/basic/__tests__/App.test.tsx +30 -12
- package/examples/basic/package.json +1 -1
- package/examples/basic/yarn.lock +2095 -3474
- package/examples/react-navigation/yarn.lock +1657 -2249
- package/examples/redux/yarn.lock +1772 -5376
- package/experiments-app/.expo/packager-info.json +9 -0
- package/experiments-app/.expo/settings.json +1 -2
- package/experiments-app/package.json +7 -9
- package/experiments-app/src/MainScreen.tsx +1 -0
- package/experiments-app/src/experiments.ts +20 -2
- package/experiments-app/src/screens/FlatListEvents.tsx +57 -0
- package/experiments-app/src/screens/ScrollViewEvents.tsx +65 -0
- package/experiments-app/src/screens/SectionListEvents.tsx +91 -0
- package/experiments-app/src/screens/TextInputEventPropagation.tsx +5 -17
- package/experiments-app/src/screens/TextInputEvents.tsx +13 -25
- package/experiments-app/src/utils/helpers.ts +13 -3
- package/experiments-app/yarn.lock +901 -1105
- package/experiments-rtl/.babelrc +8 -0
- package/experiments-rtl/.eslintrc.json +3 -0
- package/experiments-rtl/.gitignore +35 -0
- package/experiments-rtl/README.md +34 -0
- package/experiments-rtl/jest-setup.js +1 -0
- package/experiments-rtl/jest.config.js +4 -0
- package/experiments-rtl/next.config.js +4 -0
- package/experiments-rtl/package.json +38 -0
- package/experiments-rtl/postcss.config.js +6 -0
- package/experiments-rtl/public/next.svg +1 -0
- package/experiments-rtl/public/vercel.svg +1 -0
- package/experiments-rtl/src/app/__tests__/click.test.tsx +31 -0
- package/experiments-rtl/src/app/__tests__/managed-text-input.test.tsx +51 -0
- package/experiments-rtl/src/app/globals.css +27 -0
- package/experiments-rtl/src/app/layout.tsx +22 -0
- package/experiments-rtl/src/app/page.tsx +113 -0
- package/experiments-rtl/tailwind.config.ts +20 -0
- package/experiments-rtl/tsconfig.json +28 -0
- package/experiments-rtl/yarn.lock +5418 -0
- package/package.json +4 -2
- package/src/fireEvent.ts +1 -1
- package/src/helpers/component-tree.ts +14 -9
- package/src/helpers/findAll.ts +6 -4
- package/src/helpers/host-component-names.tsx +15 -2
- package/src/helpers/matchers/matchLabelText.ts +0 -1
- package/src/queries/a11yState.ts +2 -6
- package/src/queries/a11yValue.ts +2 -6
- package/src/queries/displayValue.ts +7 -14
- package/src/queries/hintText.ts +2 -7
- package/src/queries/labelText.ts +1 -3
- package/src/queries/placeholderText.ts +6 -13
- package/src/queries/role.ts +1 -2
- package/src/queries/testId.ts +5 -10
- package/src/queries/text.ts +3 -6
- package/src/render.tsx +1 -1
- package/src/user-event/__tests__/__snapshots__/clear.test.tsx.snap +269 -0
- package/src/user-event/__tests__/clear.test.tsx +217 -0
- package/src/user-event/clear.ts +59 -0
- package/src/user-event/index.ts +1 -0
- package/src/user-event/press/press.ts +8 -14
- package/src/user-event/setup/setup.ts +17 -2
- package/src/user-event/type/__tests__/type-managed.test.tsx +0 -1
- package/src/user-event/type/__tests__/type.test.tsx +0 -1
- package/src/user-event/type/type.ts +16 -13
- package/src/user-event/utils/__tests__/wait.test.ts +0 -1
- package/src/user-event/utils/host-components.ts +6 -0
- package/src/user-event/utils/index.ts +1 -0
- package/src/user-event/utils/text-range.ts +0 -7
- package/website/docs/Queries.md +64 -59
- package/website/docs/UserEvent.md +48 -0
- package/build/helpers/filterNodeByType.d.ts +0 -3
- package/build/helpers/filterNodeByType.js +0 -9
- package/build/helpers/filterNodeByType.js.map +0 -1
- package/coverage/clover.xml +0 -1176
- package/coverage/coverage-final.json +0 -70
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -266
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov-report/src/act.ts.html +0 -343
- package/coverage/lcov-report/src/cleanup.ts.html +0 -130
- package/coverage/lcov-report/src/config.ts.html +0 -301
- package/coverage/lcov-report/src/fireEvent.ts.html +0 -559
- package/coverage/lcov-report/src/flushMicroTasks.ts.html +0 -124
- package/coverage/lcov-report/src/helpers/accessiblity.ts.html +0 -412
- package/coverage/lcov-report/src/helpers/component-tree.ts.html +0 -352
- package/coverage/lcov-report/src/helpers/debugDeep.ts.html +0 -166
- package/coverage/lcov-report/src/helpers/debugShallow.ts.html +0 -151
- package/coverage/lcov-report/src/helpers/deprecation.ts.html +0 -244
- package/coverage/lcov-report/src/helpers/errors.ts.html +0 -283
- package/coverage/lcov-report/src/helpers/filterNodeByType.ts.html +0 -106
- package/coverage/lcov-report/src/helpers/findAll.ts.html +0 -289
- package/coverage/lcov-report/src/helpers/format-default.ts.html +0 -301
- package/coverage/lcov-report/src/helpers/format.ts.html +0 -226
- package/coverage/lcov-report/src/helpers/getTextContent.ts.html +0 -145
- package/coverage/lcov-report/src/helpers/host-component-names.tsx.html +0 -286
- package/coverage/lcov-report/src/helpers/index.html +0 -326
- package/coverage/lcov-report/src/helpers/matchers/accessibilityState.ts.html +0 -229
- package/coverage/lcov-report/src/helpers/matchers/accessibilityValue.ts.html +0 -157
- package/coverage/lcov-report/src/helpers/matchers/index.html +0 -206
- package/coverage/lcov-report/src/helpers/matchers/matchArrayProp.ts.html +0 -148
- package/coverage/lcov-report/src/helpers/matchers/matchLabelText.ts.html +0 -238
- package/coverage/lcov-report/src/helpers/matchers/matchObjectProp.ts.html +0 -160
- package/coverage/lcov-report/src/helpers/matchers/matchStringProp.ts.html +0 -154
- package/coverage/lcov-report/src/helpers/matchers/matchTextContent.ts.html +0 -145
- package/coverage/lcov-report/src/helpers/query-name.ts.html +0 -97
- package/coverage/lcov-report/src/helpers/stringValidation.ts.html +0 -193
- package/coverage/lcov-report/src/helpers/timers.ts.html +0 -382
- package/coverage/lcov-report/src/index.html +0 -356
- package/coverage/lcov-report/src/index.ts.html +0 -184
- package/coverage/lcov-report/src/matches.ts.html +0 -232
- package/coverage/lcov-report/src/pure.ts.html +0 -157
- package/coverage/lcov-report/src/queries/a11yState.ts.html +0 -478
- package/coverage/lcov-report/src/queries/a11yValue.ts.html +0 -478
- package/coverage/lcov-report/src/queries/displayValue.ts.html +0 -319
- package/coverage/lcov-report/src/queries/hintText.ts.html +0 -421
- package/coverage/lcov-report/src/queries/index.html +0 -281
- package/coverage/lcov-report/src/queries/labelText.ts.html +0 -262
- package/coverage/lcov-report/src/queries/makeQueries.ts.html +0 -850
- package/coverage/lcov-report/src/queries/placeholderText.ts.html +0 -322
- package/coverage/lcov-report/src/queries/role.ts.html +0 -481
- package/coverage/lcov-report/src/queries/testId.ts.html +0 -298
- package/coverage/lcov-report/src/queries/text.ts.html +0 -283
- package/coverage/lcov-report/src/queries/unsafeProps.ts.html +0 -313
- package/coverage/lcov-report/src/queries/unsafeType.ts.html +0 -304
- package/coverage/lcov-report/src/react-versions.ts.html +0 -118
- package/coverage/lcov-report/src/render-act.ts.html +0 -142
- package/coverage/lcov-report/src/render.tsx.html +0 -592
- package/coverage/lcov-report/src/renderHook.tsx.html +0 -262
- package/coverage/lcov-report/src/screen.ts.html +0 -454
- package/coverage/lcov-report/src/shallow.ts.html +0 -139
- package/coverage/lcov-report/src/test-utils/events.ts.html +0 -145
- package/coverage/lcov-report/src/test-utils/index.html +0 -131
- package/coverage/lcov-report/src/test-utils/index.ts.html +0 -88
- package/coverage/lcov-report/src/user-event/event-builder/common.ts.html +0 -229
- package/coverage/lcov-report/src/user-event/event-builder/index.html +0 -146
- package/coverage/lcov-report/src/user-event/event-builder/index.ts.html +0 -106
- package/coverage/lcov-report/src/user-event/event-builder/test-input.ts.html +0 -343
- package/coverage/lcov-report/src/user-event/event-builder/text-input.ts.html +0 -343
- package/coverage/lcov-report/src/user-event/index.html +0 -116
- package/coverage/lcov-report/src/user-event/index.ts.html +0 -121
- package/coverage/lcov-report/src/user-event/press/index.html +0 -131
- package/coverage/lcov-report/src/user-event/press/index.ts.html +0 -88
- package/coverage/lcov-report/src/user-event/press/press.ts.html +0 -133
- package/coverage/lcov-report/src/user-event/setup/index.html +0 -131
- package/coverage/lcov-report/src/user-event/setup/index.ts.html +0 -91
- package/coverage/lcov-report/src/user-event/setup/setup.ts.html +0 -358
- package/coverage/lcov-report/src/user-event/type/index.html +0 -146
- package/coverage/lcov-report/src/user-event/type/index.ts.html +0 -88
- package/coverage/lcov-report/src/user-event/type/parseKeys.ts.html +0 -208
- package/coverage/lcov-report/src/user-event/type/type.ts.html +0 -484
- package/coverage/lcov-report/src/user-event/utils/content-size.ts.html +0 -160
- package/coverage/lcov-report/src/user-event/utils/dispatch-event.ts.html +0 -367
- package/coverage/lcov-report/src/user-event/utils/events.ts.html +0 -247
- package/coverage/lcov-report/src/user-event/utils/index.html +0 -176
- package/coverage/lcov-report/src/user-event/utils/index.ts.html +0 -97
- package/coverage/lcov-report/src/user-event/utils/text-range.ts.html +0 -118
- package/coverage/lcov-report/src/user-event/utils/wait.ts.html +0 -130
- package/coverage/lcov-report/src/waitFor.ts.html +0 -772
- package/coverage/lcov-report/src/waitForElementToBeRemoved.ts.html +0 -211
- package/coverage/lcov-report/src/within.ts.html +0 -175
- package/coverage/lcov.info +0 -2614
- package/examples/.DS_Store +0 -0
- package/examples/basic/.expo/devices.json +0 -3
- package/examples/basic/yarn-error.log +0 -8083
- package/examples/redux/yarn-error.log +0 -8083
- package/src/.DS_Store +0 -0
- package/src/__tests__/.DS_Store +0 -0
- package/src/helpers/filterNodeByType.ts +0 -7
- package/website/.DS_Store +0 -0
- package/website/.docusaurus/DONT-EDIT-THIS-FOLDER +0 -5
- package/website/.docusaurus/client-modules.js +0 -6
- package/website/.docusaurus/codeTranslations.json +0 -1
- package/website/.docusaurus/docusaurus-plugin-content-blog/default/blog-post-list-prop-default.json +0 -4
- package/website/.docusaurus/docusaurus-plugin-content-blog/default/plugin-route-context-module-100.json +0 -4
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/plugin-route-context-module-100.json +0 -4
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-api-md-c82.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-eslint-p-llugin-testing-library-md-d24.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-faq-md-ad8.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-getting-started-md-8a6.json +0 -23
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-how-should-i-query-md-f2d.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-migration-v-11-md-add.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-migration-v-12-md-14f.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-migration-v-2-md-698.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-migration-v-7-md-6bb.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-migration-v-9-md-f69.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-queries-md-7ad.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-react-navigation-md-1bd.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-redux-integration-md-77b.json +0 -23
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-testing-environment-md-1c6.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-troubleshooting-md-01d.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-understanding-act-md-aa9.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/site-docs-user-event-md-501.json +0 -27
- package/website/.docusaurus/docusaurus-plugin-content-docs/default/version-current-metadata-prop-751.json +0 -268
- package/website/.docusaurus/docusaurus-plugin-content-docs/react-native-testing-library-docs-route-96e.json +0 -115
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-api-md-c82.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-eslint-p-llugin-testing-library-md-d24.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-faq-md-ad8.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-getting-started-md-8a6.json +0 -15
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-how-should-i-query-md-f2d.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-migration-v-11-md-add.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-migration-v-2-md-698.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-migration-v-7-md-6bb.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-migration-v-9-md-f69.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-queries-md-7ad.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-react-navigation-md-1bd.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-redux-integration-md-77b.json +0 -15
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-troubleshooting-md-01d.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-docs/site-docs-understanding-act-md-aa9.json +0 -19
- package/website/.docusaurus/docusaurus-plugin-content-pages/default/plugin-route-context-module-100.json +0 -4
- package/website/.docusaurus/docusaurus-plugin-debug/default/docusaurus-debug-all-content-673.json +0 -623
- package/website/.docusaurus/docusaurus-plugin-debug/default/plugin-route-context-module-100.json +0 -4
- package/website/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json +0 -4
- package/website/.docusaurus/docusaurus.config.js +0 -267
- package/website/.docusaurus/docusaurus.config.mjs +0 -365
- package/website/.docusaurus/globalData.json +0 -113
- package/website/.docusaurus/i18n.json +0 -17
- package/website/.docusaurus/registry.js +0 -35
- package/website/.docusaurus/routes.js +0 -162
- package/website/.docusaurus/routesChunkNames.json +0 -133
- package/website/.docusaurus/site-metadata.json +0 -36
- package/yarn-error.log +0 -10613
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"docusaurus-plugin-content-docs": {
|
|
3
|
-
"default": {
|
|
4
|
-
"path": "/react-native-testing-library/docs",
|
|
5
|
-
"versions": [
|
|
6
|
-
{
|
|
7
|
-
"name": "current",
|
|
8
|
-
"label": "Next",
|
|
9
|
-
"isLast": true,
|
|
10
|
-
"path": "/react-native-testing-library/docs",
|
|
11
|
-
"mainDocId": "getting-started",
|
|
12
|
-
"docs": [
|
|
13
|
-
{
|
|
14
|
-
"id": "api",
|
|
15
|
-
"path": "/react-native-testing-library/docs/api",
|
|
16
|
-
"sidebar": "docs"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": "api-queries",
|
|
20
|
-
"path": "/react-native-testing-library/docs/api-queries",
|
|
21
|
-
"sidebar": "docs"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"id": "eslint-plugin-testing-library",
|
|
25
|
-
"path": "/react-native-testing-library/docs/eslint-plugin-testing-library",
|
|
26
|
-
"sidebar": "docs"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"id": "faq",
|
|
30
|
-
"path": "/react-native-testing-library/docs/faq",
|
|
31
|
-
"sidebar": "docs"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"id": "getting-started",
|
|
35
|
-
"path": "/react-native-testing-library/docs/getting-started",
|
|
36
|
-
"sidebar": "docs"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"id": "how-should-i-query",
|
|
40
|
-
"path": "/react-native-testing-library/docs/how-should-i-query",
|
|
41
|
-
"sidebar": "docs"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"id": "migration-v11",
|
|
45
|
-
"path": "/react-native-testing-library/docs/migration-v11",
|
|
46
|
-
"sidebar": "docs"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"id": "migration-v12",
|
|
50
|
-
"path": "/react-native-testing-library/docs/migration-v12",
|
|
51
|
-
"sidebar": "docs"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"id": "migration-v2",
|
|
55
|
-
"path": "/react-native-testing-library/docs/migration-v2",
|
|
56
|
-
"sidebar": "docs"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"id": "migration-v7",
|
|
60
|
-
"path": "/react-native-testing-library/docs/migration-v7",
|
|
61
|
-
"sidebar": "docs"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"id": "migration-v9",
|
|
65
|
-
"path": "/react-native-testing-library/docs/migration-v9",
|
|
66
|
-
"sidebar": "docs"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"id": "react-navigation",
|
|
70
|
-
"path": "/react-native-testing-library/docs/react-navigation",
|
|
71
|
-
"sidebar": "docs"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"id": "redux-integration",
|
|
75
|
-
"path": "/react-native-testing-library/docs/redux-integration",
|
|
76
|
-
"sidebar": "docs"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"id": "testing-env",
|
|
80
|
-
"path": "/react-native-testing-library/docs/testing-env",
|
|
81
|
-
"sidebar": "docs"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"id": "troubleshooting",
|
|
85
|
-
"path": "/react-native-testing-library/docs/troubleshooting",
|
|
86
|
-
"sidebar": "docs"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"id": "understanding-act",
|
|
90
|
-
"path": "/react-native-testing-library/docs/understanding-act",
|
|
91
|
-
"sidebar": "docs"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"id": "user-event",
|
|
95
|
-
"path": "/react-native-testing-library/docs/user-event",
|
|
96
|
-
"sidebar": "docs"
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"draftIds": [],
|
|
100
|
-
"sidebars": {
|
|
101
|
-
"docs": {
|
|
102
|
-
"link": {
|
|
103
|
-
"path": "/react-native-testing-library/docs/getting-started",
|
|
104
|
-
"label": "getting-started"
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
],
|
|
110
|
-
"breadcrumbs": true
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"defaultLocale": "en",
|
|
3
|
-
"locales": [
|
|
4
|
-
"en"
|
|
5
|
-
],
|
|
6
|
-
"path": "i18n",
|
|
7
|
-
"currentLocale": "en",
|
|
8
|
-
"localeConfigs": {
|
|
9
|
-
"en": {
|
|
10
|
-
"label": "English",
|
|
11
|
-
"direction": "ltr",
|
|
12
|
-
"htmlLang": "en",
|
|
13
|
-
"calendar": "gregory",
|
|
14
|
-
"path": "en"
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
'__comp---site-src-pages-index-jsc-4-f-f99': [() => import(/* webpackChunkName: '__comp---site-src-pages-index-jsc-4-f-f99' */ '@site/src/pages/index.js'), '@site/src/pages/index.js', require.resolveWeak('@site/src/pages/index.js')],
|
|
3
|
-
'__comp---theme-debug-config-23-a-2ff': [() => import(/* webpackChunkName: '__comp---theme-debug-config-23-a-2ff' */ '@theme/DebugConfig'), '@theme/DebugConfig', require.resolveWeak('@theme/DebugConfig')],
|
|
4
|
-
'__comp---theme-debug-contentba-8-ce7': [() => import(/* webpackChunkName: '__comp---theme-debug-contentba-8-ce7' */ '@theme/DebugContent'), '@theme/DebugContent', require.resolveWeak('@theme/DebugContent')],
|
|
5
|
-
'__comp---theme-debug-global-dataede-0fa': [() => import(/* webpackChunkName: '__comp---theme-debug-global-dataede-0fa' */ '@theme/DebugGlobalData'), '@theme/DebugGlobalData', require.resolveWeak('@theme/DebugGlobalData')],
|
|
6
|
-
'__comp---theme-debug-registry-679-501': [() => import(/* webpackChunkName: '__comp---theme-debug-registry-679-501' */ '@theme/DebugRegistry'), '@theme/DebugRegistry', require.resolveWeak('@theme/DebugRegistry')],
|
|
7
|
-
'__comp---theme-debug-routes-946-699': [() => import(/* webpackChunkName: '__comp---theme-debug-routes-946-699' */ '@theme/DebugRoutes'), '@theme/DebugRoutes', require.resolveWeak('@theme/DebugRoutes')],
|
|
8
|
-
'__comp---theme-debug-site-metadata-68-e-3d4': [() => import(/* webpackChunkName: '__comp---theme-debug-site-metadata-68-e-3d4' */ '@theme/DebugSiteMetadata'), '@theme/DebugSiteMetadata', require.resolveWeak('@theme/DebugSiteMetadata')],
|
|
9
|
-
'__comp---theme-doc-item-178-a40': [() => import(/* webpackChunkName: '__comp---theme-doc-item-178-a40' */ '@theme/DocItem'), '@theme/DocItem', require.resolveWeak('@theme/DocItem')],
|
|
10
|
-
'__comp---theme-doc-page-1-be-9be': [() => import(/* webpackChunkName: '__comp---theme-doc-page-1-be-9be' */ '@theme/DocPage'), '@theme/DocPage', require.resolveWeak('@theme/DocPage')],
|
|
11
|
-
'__comp---theme-search-page-1-a-4-d6f': [() => import(/* webpackChunkName: '__comp---theme-search-page-1-a-4-d6f' */ '@theme/SearchPage'), '@theme/SearchPage', require.resolveWeak('@theme/SearchPage')],
|
|
12
|
-
'allContent---react-native-testing-library-docusaurus-debug-content-246-831': [() => import(/* webpackChunkName: 'allContent---react-native-testing-library-docusaurus-debug-content-246-831' */ '~debug/default/docusaurus-debug-all-content-673.json'), '~debug/default/docusaurus-debug-all-content-673.json', require.resolveWeak('~debug/default/docusaurus-debug-all-content-673.json')],
|
|
13
|
-
'config---react-native-testing-library-5-e-9-076': [() => import(/* webpackChunkName: 'config---react-native-testing-library-5-e-9-076' */ '@generated/docusaurus.config'), '@generated/docusaurus.config', require.resolveWeak('@generated/docusaurus.config')],
|
|
14
|
-
'content---react-native-testing-library-docs-api-queries-7-ad-9d7': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-api-queries-7-ad-9d7' */ '@site/docs/Queries.md'), '@site/docs/Queries.md', require.resolveWeak('@site/docs/Queries.md')],
|
|
15
|
-
'content---react-native-testing-library-docs-apic-82-f66': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-apic-82-f66' */ '@site/docs/API.md'), '@site/docs/API.md', require.resolveWeak('@site/docs/API.md')],
|
|
16
|
-
'content---react-native-testing-library-docs-eslint-plugin-testing-libraryd-24-5cd': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-eslint-plugin-testing-libraryd-24-5cd' */ '@site/docs/EslintPLluginTestingLibrary.md'), '@site/docs/EslintPLluginTestingLibrary.md', require.resolveWeak('@site/docs/EslintPLluginTestingLibrary.md')],
|
|
17
|
-
'content---react-native-testing-library-docs-faqad-8-1de': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-faqad-8-1de' */ '@site/docs/FAQ.md'), '@site/docs/FAQ.md', require.resolveWeak('@site/docs/FAQ.md')],
|
|
18
|
-
'content---react-native-testing-library-docs-getting-started-8-a-6-c75': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-getting-started-8-a-6-c75' */ '@site/docs/GettingStarted.md'), '@site/docs/GettingStarted.md', require.resolveWeak('@site/docs/GettingStarted.md')],
|
|
19
|
-
'content---react-native-testing-library-docs-how-should-i-queryf-2-d-6d5': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-how-should-i-queryf-2-d-6d5' */ '@site/docs/HowShouldIQuery.md'), '@site/docs/HowShouldIQuery.md', require.resolveWeak('@site/docs/HowShouldIQuery.md')],
|
|
20
|
-
'content---react-native-testing-library-docs-migration-v-11-add-e36': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-migration-v-11-add-e36' */ '@site/docs/MigrationV11.md'), '@site/docs/MigrationV11.md', require.resolveWeak('@site/docs/MigrationV11.md')],
|
|
21
|
-
'content---react-native-testing-library-docs-migration-v-1214-f-c06': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-migration-v-1214-f-c06' */ '@site/docs/MigrationV12.md'), '@site/docs/MigrationV12.md', require.resolveWeak('@site/docs/MigrationV12.md')],
|
|
22
|
-
'content---react-native-testing-library-docs-migration-v-2698-65c': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-migration-v-2698-65c' */ '@site/docs/MigrationV2.md'), '@site/docs/MigrationV2.md', require.resolveWeak('@site/docs/MigrationV2.md')],
|
|
23
|
-
'content---react-native-testing-library-docs-migration-v-76-bb-bf9': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-migration-v-76-bb-bf9' */ '@site/docs/MigrationV7.md'), '@site/docs/MigrationV7.md', require.resolveWeak('@site/docs/MigrationV7.md')],
|
|
24
|
-
'content---react-native-testing-library-docs-migration-v-9-f-69-a78': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-migration-v-9-f-69-a78' */ '@site/docs/MigrationV9.md'), '@site/docs/MigrationV9.md', require.resolveWeak('@site/docs/MigrationV9.md')],
|
|
25
|
-
'content---react-native-testing-library-docs-react-navigation-1-bd-732': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-react-navigation-1-bd-732' */ '@site/docs/ReactNavigation.md'), '@site/docs/ReactNavigation.md', require.resolveWeak('@site/docs/ReactNavigation.md')],
|
|
26
|
-
'content---react-native-testing-library-docs-redux-integration-77-b-ff4': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-redux-integration-77-b-ff4' */ '@site/docs/ReduxIntegration.md'), '@site/docs/ReduxIntegration.md', require.resolveWeak('@site/docs/ReduxIntegration.md')],
|
|
27
|
-
'content---react-native-testing-library-docs-testing-env-1-c-6-68f': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-testing-env-1-c-6-68f' */ '@site/docs/TestingEnvironment.md'), '@site/docs/TestingEnvironment.md', require.resolveWeak('@site/docs/TestingEnvironment.md')],
|
|
28
|
-
'content---react-native-testing-library-docs-troubleshooting-01-d-73c': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-troubleshooting-01-d-73c' */ '@site/docs/Troubleshooting.md'), '@site/docs/Troubleshooting.md', require.resolveWeak('@site/docs/Troubleshooting.md')],
|
|
29
|
-
'content---react-native-testing-library-docs-understanding-actaa-9-cfb': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-understanding-actaa-9-cfb' */ '@site/docs/UnderstandingAct.md'), '@site/docs/UnderstandingAct.md', require.resolveWeak('@site/docs/UnderstandingAct.md')],
|
|
30
|
-
'content---react-native-testing-library-docs-user-event-501-9d2': [() => import(/* webpackChunkName: 'content---react-native-testing-library-docs-user-event-501-9d2' */ '@site/docs/UserEvent.md'), '@site/docs/UserEvent.md', require.resolveWeak('@site/docs/UserEvent.md')],
|
|
31
|
-
'plugin---react-native-testing-library-6-b-3-7bf': [() => import(/* webpackChunkName: 'plugin---react-native-testing-library-6-b-3-7bf' */ '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-pages/default/plugin-route-context-module-100.json'), '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-pages/default/plugin-route-context-module-100.json', require.resolveWeak('/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-pages/default/plugin-route-context-module-100.json')],
|
|
32
|
-
'plugin---react-native-testing-library-docs-8-e-3-8cd': [() => import(/* webpackChunkName: 'plugin---react-native-testing-library-docs-8-e-3-8cd' */ '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-docs/default/plugin-route-context-module-100.json'), '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-docs/default/plugin-route-context-module-100.json', require.resolveWeak('/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-content-docs/default/plugin-route-context-module-100.json')],
|
|
33
|
-
'plugin---react-native-testing-library-docusaurus-debug-3-d-1-966': [() => import(/* webpackChunkName: 'plugin---react-native-testing-library-docusaurus-debug-3-d-1-966' */ '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-debug/default/plugin-route-context-module-100.json'), '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-debug/default/plugin-route-context-module-100.json', require.resolveWeak('/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-plugin-debug/default/plugin-route-context-module-100.json')],
|
|
34
|
-
'plugin---react-native-testing-library-searchbd-8-fd2': [() => import(/* webpackChunkName: 'plugin---react-native-testing-library-searchbd-8-fd2' */ '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json'), '/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json', require.resolveWeak('/Users/maciej/Development/OpenSource/RNTL/website/.docusaurus/docusaurus-theme-search-algolia/default/plugin-route-context-module-100.json')],
|
|
35
|
-
'versionMetadata---react-native-testing-library-docs-935-f8e': [() => import(/* webpackChunkName: 'versionMetadata---react-native-testing-library-docs-935-f8e' */ '~docs/default/version-current-metadata-prop-751.json'), '~docs/default/version-current-metadata-prop-751.json', require.resolveWeak('~docs/default/version-current-metadata-prop-751.json')],};
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import ComponentCreator from '@docusaurus/ComponentCreator';
|
|
3
|
-
|
|
4
|
-
export default [
|
|
5
|
-
{
|
|
6
|
-
path: '/react-native-testing-library/__docusaurus/debug',
|
|
7
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug', 'ba8'),
|
|
8
|
-
exact: true
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
path: '/react-native-testing-library/__docusaurus/debug/config',
|
|
12
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/config', '400'),
|
|
13
|
-
exact: true
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
path: '/react-native-testing-library/__docusaurus/debug/content',
|
|
17
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/content', 'db3'),
|
|
18
|
-
exact: true
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
path: '/react-native-testing-library/__docusaurus/debug/globalData',
|
|
22
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/globalData', 'ca0'),
|
|
23
|
-
exact: true
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
path: '/react-native-testing-library/__docusaurus/debug/metadata',
|
|
27
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/metadata', '681'),
|
|
28
|
-
exact: true
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
path: '/react-native-testing-library/__docusaurus/debug/registry',
|
|
32
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/registry', 'bd1'),
|
|
33
|
-
exact: true
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
path: '/react-native-testing-library/__docusaurus/debug/routes',
|
|
37
|
-
component: ComponentCreator('/react-native-testing-library/__docusaurus/debug/routes', '222'),
|
|
38
|
-
exact: true
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
path: '/react-native-testing-library/search',
|
|
42
|
-
component: ComponentCreator('/react-native-testing-library/search', '06d'),
|
|
43
|
-
exact: true
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
path: '/react-native-testing-library/docs',
|
|
47
|
-
component: ComponentCreator('/react-native-testing-library/docs', '71b'),
|
|
48
|
-
routes: [
|
|
49
|
-
{
|
|
50
|
-
path: '/react-native-testing-library/docs/api',
|
|
51
|
-
component: ComponentCreator('/react-native-testing-library/docs/api', '850'),
|
|
52
|
-
exact: true,
|
|
53
|
-
sidebar: "docs"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
path: '/react-native-testing-library/docs/api-queries',
|
|
57
|
-
component: ComponentCreator('/react-native-testing-library/docs/api-queries', 'b40'),
|
|
58
|
-
exact: true,
|
|
59
|
-
sidebar: "docs"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
path: '/react-native-testing-library/docs/eslint-plugin-testing-library',
|
|
63
|
-
component: ComponentCreator('/react-native-testing-library/docs/eslint-plugin-testing-library', 'c53'),
|
|
64
|
-
exact: true,
|
|
65
|
-
sidebar: "docs"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
path: '/react-native-testing-library/docs/faq',
|
|
69
|
-
component: ComponentCreator('/react-native-testing-library/docs/faq', '9eb'),
|
|
70
|
-
exact: true,
|
|
71
|
-
sidebar: "docs"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
path: '/react-native-testing-library/docs/getting-started',
|
|
75
|
-
component: ComponentCreator('/react-native-testing-library/docs/getting-started', '737'),
|
|
76
|
-
exact: true,
|
|
77
|
-
sidebar: "docs"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
path: '/react-native-testing-library/docs/how-should-i-query',
|
|
81
|
-
component: ComponentCreator('/react-native-testing-library/docs/how-should-i-query', 'c42'),
|
|
82
|
-
exact: true,
|
|
83
|
-
sidebar: "docs"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
path: '/react-native-testing-library/docs/migration-v11',
|
|
87
|
-
component: ComponentCreator('/react-native-testing-library/docs/migration-v11', 'd62'),
|
|
88
|
-
exact: true,
|
|
89
|
-
sidebar: "docs"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
path: '/react-native-testing-library/docs/migration-v12',
|
|
93
|
-
component: ComponentCreator('/react-native-testing-library/docs/migration-v12', '429'),
|
|
94
|
-
exact: true,
|
|
95
|
-
sidebar: "docs"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
path: '/react-native-testing-library/docs/migration-v2',
|
|
99
|
-
component: ComponentCreator('/react-native-testing-library/docs/migration-v2', '34b'),
|
|
100
|
-
exact: true,
|
|
101
|
-
sidebar: "docs"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
path: '/react-native-testing-library/docs/migration-v7',
|
|
105
|
-
component: ComponentCreator('/react-native-testing-library/docs/migration-v7', 'e84'),
|
|
106
|
-
exact: true,
|
|
107
|
-
sidebar: "docs"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
path: '/react-native-testing-library/docs/migration-v9',
|
|
111
|
-
component: ComponentCreator('/react-native-testing-library/docs/migration-v9', 'f5d'),
|
|
112
|
-
exact: true,
|
|
113
|
-
sidebar: "docs"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
path: '/react-native-testing-library/docs/react-navigation',
|
|
117
|
-
component: ComponentCreator('/react-native-testing-library/docs/react-navigation', 'ab2'),
|
|
118
|
-
exact: true,
|
|
119
|
-
sidebar: "docs"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
path: '/react-native-testing-library/docs/redux-integration',
|
|
123
|
-
component: ComponentCreator('/react-native-testing-library/docs/redux-integration', '80a'),
|
|
124
|
-
exact: true,
|
|
125
|
-
sidebar: "docs"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
path: '/react-native-testing-library/docs/testing-env',
|
|
129
|
-
component: ComponentCreator('/react-native-testing-library/docs/testing-env', 'b84'),
|
|
130
|
-
exact: true,
|
|
131
|
-
sidebar: "docs"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
path: '/react-native-testing-library/docs/troubleshooting',
|
|
135
|
-
component: ComponentCreator('/react-native-testing-library/docs/troubleshooting', '7a5'),
|
|
136
|
-
exact: true,
|
|
137
|
-
sidebar: "docs"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
path: '/react-native-testing-library/docs/understanding-act',
|
|
141
|
-
component: ComponentCreator('/react-native-testing-library/docs/understanding-act', 'cad'),
|
|
142
|
-
exact: true,
|
|
143
|
-
sidebar: "docs"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
path: '/react-native-testing-library/docs/user-event',
|
|
147
|
-
component: ComponentCreator('/react-native-testing-library/docs/user-event', '646'),
|
|
148
|
-
exact: true,
|
|
149
|
-
sidebar: "docs"
|
|
150
|
-
}
|
|
151
|
-
]
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
path: '/react-native-testing-library/',
|
|
155
|
-
component: ComponentCreator('/react-native-testing-library/', 'd6e'),
|
|
156
|
-
exact: true
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
path: '*',
|
|
160
|
-
component: ComponentCreator('*'),
|
|
161
|
-
},
|
|
162
|
-
];
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"/react-native-testing-library/__docusaurus/debug-ba8": {
|
|
3
|
-
"__comp": "__comp---theme-debug-config-23-a-2ff",
|
|
4
|
-
"__context": {
|
|
5
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
6
|
-
}
|
|
7
|
-
},
|
|
8
|
-
"/react-native-testing-library/__docusaurus/debug/config-400": {
|
|
9
|
-
"__comp": "__comp---theme-debug-config-23-a-2ff",
|
|
10
|
-
"__context": {
|
|
11
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"/react-native-testing-library/__docusaurus/debug/content-db3": {
|
|
15
|
-
"__comp": "__comp---theme-debug-contentba-8-ce7",
|
|
16
|
-
"__context": {
|
|
17
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
18
|
-
},
|
|
19
|
-
"allContent": "allContent---react-native-testing-library-docusaurus-debug-content-246-831"
|
|
20
|
-
},
|
|
21
|
-
"/react-native-testing-library/__docusaurus/debug/globalData-ca0": {
|
|
22
|
-
"__comp": "__comp---theme-debug-global-dataede-0fa",
|
|
23
|
-
"__context": {
|
|
24
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"/react-native-testing-library/__docusaurus/debug/metadata-681": {
|
|
28
|
-
"__comp": "__comp---theme-debug-site-metadata-68-e-3d4",
|
|
29
|
-
"__context": {
|
|
30
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"/react-native-testing-library/__docusaurus/debug/registry-bd1": {
|
|
34
|
-
"__comp": "__comp---theme-debug-registry-679-501",
|
|
35
|
-
"__context": {
|
|
36
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"/react-native-testing-library/__docusaurus/debug/routes-222": {
|
|
40
|
-
"__comp": "__comp---theme-debug-routes-946-699",
|
|
41
|
-
"__context": {
|
|
42
|
-
"plugin": "plugin---react-native-testing-library-docusaurus-debug-3-d-1-966"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"/react-native-testing-library/search-06d": {
|
|
46
|
-
"__comp": "__comp---theme-search-page-1-a-4-d6f",
|
|
47
|
-
"__context": {
|
|
48
|
-
"plugin": "plugin---react-native-testing-library-searchbd-8-fd2"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"/react-native-testing-library/docs-71b": {
|
|
52
|
-
"__comp": "__comp---theme-doc-page-1-be-9be",
|
|
53
|
-
"__context": {
|
|
54
|
-
"plugin": "plugin---react-native-testing-library-docs-8-e-3-8cd"
|
|
55
|
-
},
|
|
56
|
-
"versionMetadata": "versionMetadata---react-native-testing-library-docs-935-f8e"
|
|
57
|
-
},
|
|
58
|
-
"/react-native-testing-library/docs/api-850": {
|
|
59
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
60
|
-
"content": "content---react-native-testing-library-docs-apic-82-f66"
|
|
61
|
-
},
|
|
62
|
-
"/react-native-testing-library/docs/api-queries-b40": {
|
|
63
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
64
|
-
"content": "content---react-native-testing-library-docs-api-queries-7-ad-9d7"
|
|
65
|
-
},
|
|
66
|
-
"/react-native-testing-library/docs/eslint-plugin-testing-library-c53": {
|
|
67
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
68
|
-
"content": "content---react-native-testing-library-docs-eslint-plugin-testing-libraryd-24-5cd"
|
|
69
|
-
},
|
|
70
|
-
"/react-native-testing-library/docs/faq-9eb": {
|
|
71
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
72
|
-
"content": "content---react-native-testing-library-docs-faqad-8-1de"
|
|
73
|
-
},
|
|
74
|
-
"/react-native-testing-library/docs/getting-started-737": {
|
|
75
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
76
|
-
"content": "content---react-native-testing-library-docs-getting-started-8-a-6-c75"
|
|
77
|
-
},
|
|
78
|
-
"/react-native-testing-library/docs/how-should-i-query-c42": {
|
|
79
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
80
|
-
"content": "content---react-native-testing-library-docs-how-should-i-queryf-2-d-6d5"
|
|
81
|
-
},
|
|
82
|
-
"/react-native-testing-library/docs/migration-v11-d62": {
|
|
83
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
84
|
-
"content": "content---react-native-testing-library-docs-migration-v-11-add-e36"
|
|
85
|
-
},
|
|
86
|
-
"/react-native-testing-library/docs/migration-v12-429": {
|
|
87
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
88
|
-
"content": "content---react-native-testing-library-docs-migration-v-1214-f-c06"
|
|
89
|
-
},
|
|
90
|
-
"/react-native-testing-library/docs/migration-v2-34b": {
|
|
91
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
92
|
-
"content": "content---react-native-testing-library-docs-migration-v-2698-65c"
|
|
93
|
-
},
|
|
94
|
-
"/react-native-testing-library/docs/migration-v7-e84": {
|
|
95
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
96
|
-
"content": "content---react-native-testing-library-docs-migration-v-76-bb-bf9"
|
|
97
|
-
},
|
|
98
|
-
"/react-native-testing-library/docs/migration-v9-f5d": {
|
|
99
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
100
|
-
"content": "content---react-native-testing-library-docs-migration-v-9-f-69-a78"
|
|
101
|
-
},
|
|
102
|
-
"/react-native-testing-library/docs/react-navigation-ab2": {
|
|
103
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
104
|
-
"content": "content---react-native-testing-library-docs-react-navigation-1-bd-732"
|
|
105
|
-
},
|
|
106
|
-
"/react-native-testing-library/docs/redux-integration-80a": {
|
|
107
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
108
|
-
"content": "content---react-native-testing-library-docs-redux-integration-77-b-ff4"
|
|
109
|
-
},
|
|
110
|
-
"/react-native-testing-library/docs/testing-env-b84": {
|
|
111
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
112
|
-
"content": "content---react-native-testing-library-docs-testing-env-1-c-6-68f"
|
|
113
|
-
},
|
|
114
|
-
"/react-native-testing-library/docs/troubleshooting-7a5": {
|
|
115
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
116
|
-
"content": "content---react-native-testing-library-docs-troubleshooting-01-d-73c"
|
|
117
|
-
},
|
|
118
|
-
"/react-native-testing-library/docs/understanding-act-cad": {
|
|
119
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
120
|
-
"content": "content---react-native-testing-library-docs-understanding-actaa-9-cfb"
|
|
121
|
-
},
|
|
122
|
-
"/react-native-testing-library/docs/user-event-646": {
|
|
123
|
-
"__comp": "__comp---theme-doc-item-178-a40",
|
|
124
|
-
"content": "content---react-native-testing-library-docs-user-event-501-9d2"
|
|
125
|
-
},
|
|
126
|
-
"/react-native-testing-library/-d6e": {
|
|
127
|
-
"__comp": "__comp---site-src-pages-index-jsc-4-f-f99",
|
|
128
|
-
"__context": {
|
|
129
|
-
"plugin": "plugin---react-native-testing-library-6-b-3-7bf"
|
|
130
|
-
},
|
|
131
|
-
"config": "config---react-native-testing-library-5-e-9-076"
|
|
132
|
-
}
|
|
133
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"docusaurusVersion": "2.3.1",
|
|
3
|
-
"siteVersion": "0.0.0",
|
|
4
|
-
"pluginVersions": {
|
|
5
|
-
"docusaurus-plugin-content-docs": {
|
|
6
|
-
"type": "package",
|
|
7
|
-
"name": "@docusaurus/plugin-content-docs",
|
|
8
|
-
"version": "2.3.1"
|
|
9
|
-
},
|
|
10
|
-
"docusaurus-plugin-content-blog": {
|
|
11
|
-
"type": "package",
|
|
12
|
-
"name": "@docusaurus/plugin-content-blog",
|
|
13
|
-
"version": "2.3.1"
|
|
14
|
-
},
|
|
15
|
-
"docusaurus-plugin-content-pages": {
|
|
16
|
-
"type": "package",
|
|
17
|
-
"name": "@docusaurus/plugin-content-pages",
|
|
18
|
-
"version": "2.3.1"
|
|
19
|
-
},
|
|
20
|
-
"docusaurus-plugin-debug": {
|
|
21
|
-
"type": "package",
|
|
22
|
-
"name": "@docusaurus/plugin-debug",
|
|
23
|
-
"version": "2.3.1"
|
|
24
|
-
},
|
|
25
|
-
"docusaurus-theme-classic": {
|
|
26
|
-
"type": "package",
|
|
27
|
-
"name": "@docusaurus/theme-classic",
|
|
28
|
-
"version": "2.3.1"
|
|
29
|
-
},
|
|
30
|
-
"docusaurus-theme-search-algolia": {
|
|
31
|
-
"type": "package",
|
|
32
|
-
"name": "@docusaurus/theme-search-algolia",
|
|
33
|
-
"version": "2.3.1"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|