From dcc1b243950d985268bd7d105ddd518572e0f1b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Kondratiuk?= Date: Tue, 9 Jan 2018 21:31:41 -0300 Subject: [PATCH] chore(Page): Add missing return comments in addScriptTag and addStyleTag (#1753) --- lib/Page.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Page.js b/lib/Page.js index 46019550..0807dd0b 100644 --- a/lib/Page.js +++ b/lib/Page.js @@ -295,6 +295,7 @@ class Page extends EventEmitter { /** * @param {Object} options + * @return {!Promise} */ async addScriptTag(options) { return this.mainFrame().addScriptTag(options); @@ -302,6 +303,7 @@ class Page extends EventEmitter { /** * @param {Object} options + * @return {!Promise} */ async addStyleTag(options) { return this.mainFrame().addStyleTag(options);