Skip to content

Commit 8c93be6

Browse files
committed
update jest to v30 and required migration steps
1 parent 5b50c7d commit 8c93be6

File tree

7 files changed

+1485
-944
lines changed

7 files changed

+1485
-944
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ All notable changes to `hap-nodejs` will be documented in this file. This projec
1111
- update `commander` from `v13` to `v14`
1212
- Added support for NodeJS 24
1313
- Update @homebridge/ciao to 1.3.3
14+
- update `jest` to `v30` and required migration steps
15+
16+
### Homebridge Dependencies
17+
18+
- `@homebridge/ciao` @ `v1.3.3`
19+
- `@homebridge/dbus-native` @ `v0.7.1`
20+
- `bonjour-hap` @ `v3.9.0`
1421

1522
## v1.2.0 (2025-06-08)
1623

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
{
1+
import type { Config } from "jest";
2+
3+
const config: Config = {
24
"preset": "ts-jest",
35
"testEnvironment": "node",
46
"coverageReporters": ["lcov"],
@@ -7,6 +9,8 @@
79
"!src/accessories/**",
810
"!src/lib/definitions/generate-definitions.ts",
911
"!src/lib/definitions/generator-configuration.ts",
10-
"!src/test-utils"
11-
]
12-
}
12+
"!src/test-utils",
13+
],
14+
};
15+
16+
export default config;

0 commit comments

Comments
 (0)