@matter/testing 0.16.0-alpha.0-20250812-285b75d83 → 0.16.0-alpha.0-20250815-ac9fd6eb0

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.
@@ -357,9 +357,9 @@ async function configureScripts() {
357
357
  await State.container.edit(
358
358
  import_edit.edit.sed("s/sleep(0.001)/sleep(.02)/"),
359
359
  // This is the one we actually use
360
- "/usr/local/lib/python3.12/dist-packages/chip/testing/matter_testing.py",
360
+ "/usr/local/lib/python3.12/dist-packages/matter/testing/matter_testing.py",
361
361
  // Patching here too just for completeness
362
- "/src/python_testing/matter_testing_infrastructure/chip/testing/matter_testing.py"
362
+ "/src/python_testing/matter_testing_infrastructure/matter/testing/matter_testing.py"
363
363
  );
364
364
  }
365
365
  async function configurePics() {
@@ -25,7 +25,7 @@ export declare function extendApi(Mocha: typeof MochaType): void;
25
25
  export declare function runMocha(mocha: Mocha): Promise<void>;
26
26
  export declare function adaptReporter(Mocha: typeof MochaType, title: string, reporter: Reporter, updateStats?: boolean): {
27
27
  new (runner: Mocha.Runner): {
28
- readonly translatedStats: {
28
+ get translatedStats(): {
29
29
  total: number;
30
30
  complete: number;
31
31
  failures: number;
@@ -334,9 +334,9 @@ async function configureScripts() {
334
334
  await State.container.edit(
335
335
  edit.sed("s/sleep(0.001)/sleep(.02)/"),
336
336
  // This is the one we actually use
337
- "/usr/local/lib/python3.12/dist-packages/chip/testing/matter_testing.py",
337
+ "/usr/local/lib/python3.12/dist-packages/matter/testing/matter_testing.py",
338
338
  // Patching here too just for completeness
339
- "/src/python_testing/matter_testing_infrastructure/chip/testing/matter_testing.py"
339
+ "/src/python_testing/matter_testing_infrastructure/matter/testing/matter_testing.py"
340
340
  );
341
341
  }
342
342
  async function configurePics() {
@@ -25,7 +25,7 @@ export declare function extendApi(Mocha: typeof MochaType): void;
25
25
  export declare function runMocha(mocha: Mocha): Promise<void>;
26
26
  export declare function adaptReporter(Mocha: typeof MochaType, title: string, reporter: Reporter, updateStats?: boolean): {
27
27
  new (runner: Mocha.Runner): {
28
- readonly translatedStats: {
28
+ get translatedStats(): {
29
29
  total: number;
30
30
  complete: number;
31
31
  failures: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/testing",
3
- "version": "0.16.0-alpha.0-20250812-285b75d83",
3
+ "version": "0.16.0-alpha.0-20250815-ac9fd6eb0",
4
4
  "description": "Test harness for running JavaScript and Matter certification tests",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -45,7 +45,7 @@
45
45
  "#tools/ansi-text": "@matter/tools/ansi-text"
46
46
  },
47
47
  "dependencies": {
48
- "@matter/tools": "0.16.0-alpha.0-20250812-285b75d83",
48
+ "@matter/tools": "0.16.0-alpha.0-20250815-ac9fd6eb0",
49
49
  "@types/express": "^5.0.3",
50
50
  "ansi-colors": "^4.1.3",
51
51
  "chai": "^4.5.0",
@@ -61,14 +61,14 @@
61
61
  "yargs": "^18.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "typescript": "~5.8.3",
64
+ "typescript": "~5.9.2",
65
65
  "@types/dockerode": "^3.3.42",
66
66
  "@types/chai": "^4.3.20",
67
67
  "@types/chai-as-promised": "^7.1.8",
68
68
  "@types/debug": "^4.1.12",
69
69
  "@types/mocha": "^10.0.10",
70
70
  "@types/docker-modem": "^3.0.6",
71
- "@types/node": "^24.1.0",
71
+ "@types/node": "^24.2.1",
72
72
  "@types/wtfnode": "^0.7.3",
73
73
  "@types/xml2js": "^0.4.14",
74
74
  "@types/yargs": "^17.0.33"
package/src/chip/state.ts CHANGED
@@ -450,10 +450,10 @@ async function configureScripts() {
450
450
  edit.sed("s/sleep(0.001)/sleep(.02)/"),
451
451
 
452
452
  // This is the one we actually use
453
- "/usr/local/lib/python3.12/dist-packages/chip/testing/matter_testing.py",
453
+ "/usr/local/lib/python3.12/dist-packages/matter/testing/matter_testing.py",
454
454
 
455
455
  // Patching here too just for completeness
456
- "/src/python_testing/matter_testing_infrastructure/chip/testing/matter_testing.py",
456
+ "/src/python_testing/matter_testing_infrastructure/matter/testing/matter_testing.py",
457
457
  );
458
458
  }
459
459