Lint and update JS sample code (#11927)

* Lint and update JS wd sample code

* Lint and update JS webdriverio sample code

* Add JS sample code to greenkeeper
This commit is contained in:
Isaac A. Murchie
2019-01-03 09:40:53 -05:00
committed by GitHub
parent 844094a7bb
commit e0c4106d22
21 changed files with 124 additions and 86 deletions

View File

@@ -1,15 +1,14 @@
import wd from 'wd';
import chai from 'chai';
import { androidCaps, serverConfig } from '../helpers/caps';
const {assert} = chai;
const PACKAGE = 'io.appium.android.apis';
const SEARCH_ACTIVITY = '.app.SearchInvoke';
const ALERT_DIALOG_ACTIVITY = '.app.AlertDialogSamples';
describe('Basic Android interactions', function () {
let driver;
before(async function () {
@@ -60,4 +59,4 @@ describe('Basic Android interactions', function () {
// Close the dialog
await closeDialogButton.click();
});
});
});