testaro 72.3.1 → 72.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "72.3.1",
3
+ "version": "72.3.2",
4
4
  "description": "Run 1300 web accessibility tests from 10 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -148,7 +148,7 @@ exports.reporter = async (_, catalog, withItems) => {
148
148
  .filter(({confidence}) => confidence >= MIN_CONFIDENCE)
149
149
  .map(({index, confidence}) => ({
150
150
  catalogIndex: String(index),
151
- what: `Element contains unnecessarily (with confidence ${Math.round(confidence * 100)}%) all-capital text`
151
+ what: `Claude Haiku has ${Math.round(confidence * 100)}% confidence that the element contains unnecessarily all-capital text`
152
152
  }));
153
153
  const evaluated = classifications.length;
154
154
  const leftOut = qualifying.length - evaluated;