Skip to content

Commit

Permalink
Merge branch 'main' into offset
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Dec 19, 2024
2 parents 11cd9b6 + c83cb81 commit b6a01a6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Browsertime changelog (we do [semantic versioning](https://semver.org))

## 23.4.4 - 2024-12-18
### Fixed
* A more robust gnirehtet check when you run your Android test [#2223](https://github.com/sitespeedio/browsertime/pull/2223).

## 23.4.3 - 2024-12-11
### Fixed
* Update to USB power profiling 1.5.0 [#2221](https://github.com/sitespeedio/browsertime/pull/2221).
Expand Down
4 changes: 2 additions & 2 deletions lib/core/engine/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class Engine {
await android._init();
this.android = android;

if (options.gnirehtet) {
if (options.gnirehtet === true) {
this.gnirehtet = new Gnirehtet(options);
await this.gnirehtet.start();
}
Expand Down Expand Up @@ -520,7 +520,7 @@ export class Engine {
}
}

if (options.gnirehtet && this.gnirehtet) {
if (options.gnirehtet === true && this.gnirehtet) {
await this.gnirehtet.stop();
}

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "browsertime",
"description": "Get performance metrics from your web page using Browsertime.",
"version": "23.4.3",
"version": "23.4.4",
"bin": "./bin/browsertime.js",
"type": "module",
"types": "./types/scripting.d.ts",
Expand Down

0 comments on commit b6a01a6

Please sign in to comment.