From a8bae5539c10ec81f693336861c6964a5a50fa03 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Thu, 22 Sep 2022 10:14:24 +0200 Subject: [PATCH] Include preURL info in the latest storer information (#3729) --- lib/plugins/lateststorer/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/plugins/lateststorer/index.js b/lib/plugins/lateststorer/index.js index 91fb59708..1c5154568 100644 --- a/lib/plugins/lateststorer/index.js +++ b/lib/plugins/lateststorer/index.js @@ -161,6 +161,11 @@ module.exports = { json.browser.version }`; + if (options.browsertime && options.browsertime.preURL) { + json.preURL = options.browsertime.preURL; + json.friendlyHTML += ` first visiting ${options.browsertime.preURL}`; + } + if (options.mobile) { json.friendlyHTML += ` (emulating mobile)`; }