Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix no-tabs rule
  • Loading branch information
galkin committed Dec 4, 2017
commit c48e76ef3dd562f17e3fb58817894f67fcec7ada
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"import/no-dynamic-require": 0,
"prefer-const": 0,
"no-empty": 0,
"no-tabs": 0,
"no-continue": 0,
"no-mixed-operators": 0,
"default-case": 0,
Expand Down
10 changes: 5 additions & 5 deletions lib/helper/Appium.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class Appium extends WebdriverIO {
* I.seeAppIsInstalled("com.example.android.apis");
* ```
*
* @param bundleId String ID of bundled app
* @param bundleId String ID of bundled app
*
* Appium: support only Android
*/
Expand All @@ -349,7 +349,7 @@ class Appium extends WebdriverIO {
* I.seeAppIsNotInstalled("com.example.android.apis");
* ```
*
* @param bundleId String ID of bundled app
* @param bundleId String ID of bundled app
*
* Appium: support only Android
*/
Expand Down Expand Up @@ -379,7 +379,7 @@ class Appium extends WebdriverIO {
* ```js
* I.removeApp('com.example.android.apis');
* ```
* @param bundleId String ID of bundled app
* @param bundleId String ID of bundled app
*
* Appium: support only Android
*/
Expand Down Expand Up @@ -678,7 +678,7 @@ class Appium extends WebdriverIO {
* I.hideDeviceKeyboard('pressKey', 'Done');
* ```
*
* @param strategy desired strategy to close keyboard (‘tapOutside’ or ‘pressKey’)
* @param strategy desired strategy to close keyboard (‘tapOutside’ or ‘pressKey’)
*
* Appium: support Android and iOS
*/
Expand All @@ -696,7 +696,7 @@ class Appium extends WebdriverIO {
* I.sendDeviceKeyEvent(3);
* ```
*
* @param keyValue Device specific key value
* @param keyValue Device specific key value
*
* Appium: support only Android
*/
Expand Down