From aa9e285291d4cc35522c9895daa1ef06abbde311 Mon Sep 17 00:00:00 2001 From: rycornell Date: Fri, 4 Aug 2017 19:39:26 -0400 Subject: [PATCH] Options.services should be a string array (#18624) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- types/webdriverio/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/webdriverio/index.d.ts b/types/webdriverio/index.d.ts index ea34a6c034..a3d7a08d99 100644 --- a/types/webdriverio/index.d.ts +++ b/types/webdriverio/index.d.ts @@ -421,7 +421,7 @@ declare namespace WebdriverIO { mochaOpts?: { [name: string]: any; }; jasmineNodeOpts?: { [name: string]: any; }; cucumberOpts?: { [name: string]: any; }; - services?: string | ((...args: any[]) => void); + services?: string[] | ((...args: any[]) => void); screenshotPath?: string; specs?: string[]; seleniumLogs?: string;