browsertime 17.0.0-beta.0 → 17.0.0-beta.1

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.
@@ -350,7 +350,7 @@ export default class Engine {
350
350
  }
351
351
  }
352
352
  } // We don't have a HAR for Firefox on Android
353
- else if (options.browser === 'firefox' && options.android) {
353
+ else if (options.browser === 'firefox' && isAndroidConfigured(options)) {
354
354
  for (let result of totalResult) {
355
355
  result.info.browser.name = 'Firefox';
356
356
  try {
@@ -146,7 +146,7 @@ class Firefox {
146
146
  );
147
147
  }
148
148
 
149
- if (this.skipHar || this.options.android) {
149
+ if (this.skipHar || isAndroidConfigured(this.options)) {
150
150
  return result;
151
151
  } else {
152
152
  const har = await getHAR(runner, this.includeResponseBodies);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "description": "Browsertime",
3
- "version": "17.0.0-beta.0",
3
+ "version": "17.0.0-beta.1",
4
4
  "bin": "./bin/browsertime.js",
5
5
  "type": "module",
6
6
  "dependencies": {