browsertime 23.4.3 → 23.4.4
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/CHANGELOG.md +4 -0
- package/lib/core/engine/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 23.4.4 - 2024-12-18
|
|
4
|
+
### Fixed
|
|
5
|
+
* A more robust gnirehtet check when you run your Android test [#2223](https://github.com/sitespeedio/browsertime/pull/2223).
|
|
6
|
+
|
|
3
7
|
## 23.4.3 - 2024-12-11
|
|
4
8
|
### Fixed
|
|
5
9
|
* Update to USB power profiling 1.5.0 [#2221](https://github.com/sitespeedio/browsertime/pull/2221).
|
package/lib/core/engine/index.js
CHANGED
|
@@ -93,7 +93,7 @@ export class Engine {
|
|
|
93
93
|
await android._init();
|
|
94
94
|
this.android = android;
|
|
95
95
|
|
|
96
|
-
if (options.gnirehtet) {
|
|
96
|
+
if (options.gnirehtet === true) {
|
|
97
97
|
this.gnirehtet = new Gnirehtet(options);
|
|
98
98
|
await this.gnirehtet.start();
|
|
99
99
|
}
|
|
@@ -520,7 +520,7 @@ export class Engine {
|
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
522
|
|
|
523
|
-
if (options.gnirehtet && this.gnirehtet) {
|
|
523
|
+
if (options.gnirehtet === true && this.gnirehtet) {
|
|
524
524
|
await this.gnirehtet.stop();
|
|
525
525
|
}
|
|
526
526
|
|
package/package.json
CHANGED