@memlab/api 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/API.js +2 -2
- package/package.json +1 -1
package/dist/API.js
CHANGED
|
@@ -310,9 +310,9 @@ function initBrowserInfoInConfig(browser, options = {}) {
|
|
|
310
310
|
var _a;
|
|
311
311
|
return __awaiter(this, void 0, void 0, function* () {
|
|
312
312
|
const config = (_a = options.config) !== null && _a !== void 0 ? _a : core_1.config;
|
|
313
|
-
core_1.browserInfo.
|
|
313
|
+
core_1.browserInfo.recordPuppeteerConfig(config.puppeteerConfig);
|
|
314
314
|
const version = yield browser.version();
|
|
315
|
-
core_1.browserInfo.
|
|
315
|
+
core_1.browserInfo.recordBrowserVersion(version);
|
|
316
316
|
if (config.verbose) {
|
|
317
317
|
core_1.info.lowLevel(JSON.stringify(core_1.browserInfo, null, 2));
|
|
318
318
|
}
|