snap-ally 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -124,6 +124,27 @@ This project is licensed under the **MIT License** - see the [LICENSE](LICENSE)
124
124
 
125
125
  ---
126
126
 
127
+ ## <span aria-hidden="true">⚠️</span> Known Limitations
128
+
129
+ Automated accessibility testing with Axe-core detects approximately **30–40% of WCAG violations** — those that are deterministic and can be evaluated programmatically, such as:
130
+
131
+ - Missing `alt` text on images
132
+ - Insufficient color contrast
133
+ - Missing form labels
134
+ - Empty buttons or links
135
+ - Missing ARIA roles and attributes
136
+
137
+ **The remaining ~60–70% require manual testing**, including:
138
+
139
+ - Keyboard-only navigation walkthroughs
140
+ - Screen reader testing (NVDA, VoiceOver, JAWS)
141
+ - Cognitive load and reading flow evaluation
142
+ - User testing with people with disabilities
143
+
144
+ snap-ally automates the "easy wins" in your CI/CD pipeline so your team can focus manual effort on the complex interactions that tools cannot evaluate.
145
+
146
+ ---
147
+
127
148
  ## <span aria-hidden="true">🤝</span> Contributing
128
149
 
129
150
  Contributions are welcome! Please feel free to submit a Pull Request.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snap-ally",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A custom Playwright reporter for Accessibility testing using Axe, with HTML reporting and Azure DevOps integration.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -40,4 +40,4 @@
40
40
  "@types/ejs": "^3.1.5",
41
41
  "@playwright/test": "^1.58.2"
42
42
  }
43
- }
43
+ }