From a6095cdc0b66f35f5fbee5089cc2f8638230c3e2 Mon Sep 17 00:00:00 2001 From: dpgraham Date: Mon, 21 Jan 2019 13:14:33 -0800 Subject: [PATCH] Lint fixes --- test/functional/commands/mobile-e2e-specs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/functional/commands/mobile-e2e-specs.js b/test/functional/commands/mobile-e2e-specs.js index 12d328c53..5fb57d197 100644 --- a/test/functional/commands/mobile-e2e-specs.js +++ b/test/functional/commands/mobile-e2e-specs.js @@ -163,10 +163,14 @@ describe('mobile', function () { it('should be able to find and take action on uiObject with given index', async function () { const text = await driver.execute('mobile: uiautomator', {strategy: 'textContains', locator: 'Views', index: 0, action: 'getText'}); text.should.eql(['Views']); + }); + }); describe('mobile: clickAction', function () { it('should click on an element', async function () { let el = await driver.elementByAccessibilityId('Views'); - await driver.execute('mobile: clickAction', {element: el, tapper: "lOnG", coordinatesProvider: "bOtToM_rIgHt", precisionDescriber: "THUMB", inputDevice: 0, buttonState: 0}); + await driver.execute('mobile: clickAction', {element: el, tapper: 'lOnG', coordinatesProvider: 'bOtToM_rIgHt', precisionDescriber: 'THUMB', inputDevice: 0, buttonState: 0}); + }); + }); describe('mobile: clickAction', function () { let viewEl; beforeEach(async function () {