-
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add script param in setDeviceSysLocaleViaSettingApp, setDeviceLanguag…
…eCountry and ensureCurrentLocale (#372) * add script param in setDeviceSysLocaleViaSettingApp * make e2e test runnable * define null if arg has no script * revert default api level and avd name * use npm run mocha than mocha directly * add script in setDeviceLanguageCountry * add script in ensureCurrentLocale * use a ternary operator * add a debug log to show current locale is equal to requested one
- Loading branch information
Showing
9 changed files
with
79 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"use strict"; | ||
|
||
let gulp = require('gulp'), | ||
boilerplate = require('appium-gulp-plugins').boilerplate.use(gulp); | ||
const gulp = require('gulp'); | ||
const boilerplate = require('appium-gulp-plugins').boilerplate.use(gulp); | ||
|
||
boilerplate({ | ||
build: 'appium-adb', | ||
jscs: false, | ||
e2eTest: { android: true } | ||
e2eTest: { android: true }, | ||
eslint: true, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters