testaro 72.3.0 → 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/UPGRADES.md CHANGED
@@ -7403,7 +7403,7 @@ pool@jpdev testaro % claude
7403
7403
  ❯ Resend on its website offers a template for its use with node.js. Is there any reason to implement it? import { Resend } from
7404
7404
  'resend';
7405
7405
 
7406
- const resend = new Resend('re_JfX1xcwY_PcLTACGxX9Zg7W2Tjq24mNFC');
7406
+ const resend = new Resend('');
7407
7407
 
7408
7408
  resend.emails.send({
7409
7409
  from: 'onboarding@resend.dev',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "72.3.0",
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;