From ef9addcb927ed175e190d1fddef5305f1fe81ded Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Thu, 9 Jul 2020 11:25:43 -0700 Subject: [PATCH] build: fix linting issue in spec-main --- spec-main/spec-helpers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/spec-main/spec-helpers.ts b/spec-main/spec-helpers.ts index ae25e2054cc0..711d462cb2dc 100644 --- a/spec-main/spec-helpers.ts +++ b/spec-main/spec-helpers.ts @@ -53,6 +53,7 @@ class RemoteControlApp { req.end(); }); } + remotely = (script: Function, ...args: any[]): Promise => { return this.remoteEval(`(${script})(...${JSON.stringify(args)})`); }