Skip to content

Commit 3f72c24

Browse files
committed
docs: fix lint errors
1 parent 45e2103 commit 3f72c24

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

.retext-spell.dic

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
AAPT/M
12
AAR/M
23
ANR/M
34
AOSP/M
@@ -64,6 +65,7 @@ beforeAll
6465
beforeEach
6566
biometric
6667
blob/M
68+
blogpost/M
6769
breakpoint/M
6870
bundler
6971
cancelled
@@ -97,6 +99,7 @@ lockfile/M
9799
macOS
98100
matcher/M
99101
minification/M
102+
minSdkVersion
100103
monorepo
101104
multistep
102105
natively
@@ -145,6 +148,7 @@ unminified
145148
unobfuscated
146149
unregister/M
147150
util/M
151+
v12.x
148152
webhook/M
149153
websocket/M
150154
xcodebuild

docs/Guide.Mocking.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Let's start with the quicker way.
6464

6565
This command is already enough to start your application in an altered mode, and you can start running your tests. Now, if some module imports `./src/config`, you tell _Metro bundler_ to prefer `./src/config.mock.js` over the plain `./src/config.js`, which means the consumer gets the mocked implementation.
6666

67-
> CAVEAT: whichever file extension you might take for the mock files – make sure you don't accidentally "pick up" unforeseen file overrides from `node_modules/**/*.your-extension.js`!
67+
> CAVEAT: whichever file extension you might take for the mock files – make sure you dont accidentally "pick up" unforeseen file overrides from `node_modules/**/*.your-extension.js`!
6868
> _Metro bundler_ does not limit itself to your project files only – applying those `--sourceExts` also affects the resolution of the `node_modules` content!
6969
7070
### Configuring Metro bundler

docs/Introduction.Android.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Setting Test Butler up for working with Detox is a bit different than explained
301301

302302
The library part can be easily achieved as explained there (i.e. by using Gradle’s `androidTestImplementation`). Same goes for initialization. As for the APK, the suggested usage of Gradle’s `androidTestUtil` is scarce when running with Detox (i.e. non-native instrumentation tests). Here’s what to do instead.
303303

304-
> _For a complete and thorough coverage of the Test Bulter integration with Detox, consider going over our [blogpost on CI execution](https://medium.com/wix-engineering/how-to-execute-android-ui-tests-on-ci-and-stay-alive-eb9089d88c1f) on medium_.
304+
> _For a complete and thorough coverage of the Test Butler integration with Detox, consider going over our [blogpost on CI execution](https://medium.com/wix-engineering/how-to-execute-android-ui-tests-on-ci-and-stay-alive-eb9089d88c1f) on medium_.
305305
306306
##### Solution 1: Prebaked Images
307307

docs/Introduction.AndroidDevEnv.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ While it’s possible to do this using Android Studio, we’ll focus on the comm
101101

102102
> - With `;android-28;`, we assumed SDK 28 here, but other APIs are supported just the same.
103103
> - The `;default;` part replaces `;google_apis;`, which is the default, and is what matters here.
104-
> - If you are running on a M1 you must install a arm64 architecture i.e. `system-images;android-28;default;arm64-v8a`
104+
> - If you are running on a M1 you must install an arm64 architecture i.e. `system-images;android-28;default;arm64-v8a`
105105
106106
1. Create an emulator (i.e. AVD - Android Virtual Device):
107107

website/versioned_docs/version-19.x/Introduction.Android.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Setting Test Butler up for working with Detox is a bit different than explained
301301

302302
The library part can be easily achieved as explained there (i.e. by using Gradle’s `androidTestImplementation`). Same goes for initialization. As for the APK, the suggested usage of Gradle’s `androidTestUtil` is scarce when running with Detox (i.e. non-native instrumentation tests). Here’s what to do instead.
303303

304-
> _For a complete and thorough coverage of the Test Bulter integration with Detox, consider going over our [blogpost on CI execution](https://medium.com/wix-engineering/how-to-execute-android-ui-tests-on-ci-and-stay-alive-eb9089d88c1f) on medium_.
304+
> _For a complete and thorough coverage of the Test Butler integration with Detox, consider going over our [blogpost on CI execution](https://medium.com/wix-engineering/how-to-execute-android-ui-tests-on-ci-and-stay-alive-eb9089d88c1f) on medium_.
305305
306306
##### Solution 1: Prebaked Images
307307

website/versioned_docs/version-19.x/Introduction.AndroidDevEnv.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ While it’s possible to do this using Android Studio, we’ll focus on the comm
101101

102102
> - With `;android-28;`, we assumed SDK 28 here, but other APIs are supported just the same.
103103
> - The `;default;` part replaces `;google_apis;`, which is the default, and is what matters here.
104-
> - If you are running on a M1 you must install a arm64 architecture i.e. `system-images;android-28;default;arm64-v8a`
104+
> - If you are running on a M1 you must install an arm64 architecture i.e. `system-images;android-28;default;arm64-v8a`
105105
106106
1. Create an emulator (i.e. AVD - Android Virtual Device):
107107

0 commit comments

Comments
 (0)