build: fix linting issue in spec-main

This commit is contained in:
Samuel Attard 2020-07-09 11:25:43 -07:00
parent dcb56923cb
commit ef9addcb92
No known key found for this signature in database
GPG key ID: FB94249299E904FE

View file

@ -53,6 +53,7 @@ class RemoteControlApp {
req.end();
});
}
remotely = (script: Function, ...args: any[]): Promise<any> => {
return this.remoteEval(`(${script})(...${JSON.stringify(args)})`);
}