@matter/testing 0.16.9-alpha.0-20260211-5dcebea26 → 0.16.9

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/util/text.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/testing",
3
- "version": "0.16.9-alpha.0-20260211-5dcebea26",
3
+ "version": "0.16.9",
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.9-alpha.0-20260211-5dcebea26",
48
+ "@matter/tools": "0.16.9",
49
49
  "@types/express": "^5.0.6",
50
50
  "ansi-colors": "^4.1.3",
51
51
  "chai": "^4.5.0",
package/src/util/text.ts CHANGED
@@ -63,6 +63,6 @@ export async function* asyncLinesOf<C, T extends AsyncIterable<C>>(input: T, fil
63
63
  */
64
64
  export function deansify(text: string) {
65
65
  // Credit to https://stackoverflow.com/questions/25245716/remove-all-ansi-colors-styles-from-strings
66
- // eslint-disable-next-line no-control-regex
66
+ // oxlint-disable-next-line no-control-regex
67
67
  return text.replace(/[\u001b\u009b][[()#;?]*(?:\d{1,4}(?:;\d{0,4})*)?[0-9A-ORZcf-nqry=><]/g, "");
68
68
  }