Skip to content

Commit 9eef111

Browse files
Add console log for raw findings in findForUrl.ts
Log raw findings from AxeBuilder analysis for debugging.
1 parent 09df8b1 commit 9eef111

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/actions/find/src/findForUrl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
1919
let findings: Finding[] = [];
2020
try {
2121
const rawFindings = await new AxeBuilder({ page }).analyze();
22+
console.log('*** RAW FINDINGS', JSON.stringify(rawFindings, null, 2));
2223
findings = rawFindings.violations.map(violation => ({
2324
scannerType: 'axe',
2425
url,

0 commit comments

Comments
 (0)