Skip to content

Commit 354be91

Browse files
committed
feat: delete a11y_debugging.test.ts
1 parent 687aa1b commit 354be91

2 files changed

Lines changed: 7 additions & 79 deletions

File tree

skills/a11y-debugging/SKILL.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ _Pass the element's `uid` to test the contrast against WCAG AA (4.5:1 for normal
132132
Verify document-level accessibility settings often missed in component testing:
133133

134134
```javascript
135-
() => {
135+
(() => {
136+
const f = () => {
136137
return {
137138
lang:
138139
document.documentElement.lang ||
@@ -147,6 +148,11 @@ Verify document-level accessibility settings often missed in component testing:
147148
: 'Disabled',
148149
};
149150
};
151+
try {
152+
console.log(f());
153+
} catch (e) {} // Log for manual console usage
154+
return f;
155+
})();
150156
```
151157

152158
## Troubleshooting

tests/skills/a11y_debugging.test.ts

Lines changed: 0 additions & 78 deletions
This file was deleted.

0 commit comments

Comments
 (0)