diff --git a/code/addons/test/src/components/TestProviderRender.tsx b/code/addons/test/src/components/TestProviderRender.tsx index d9d68aef04d1..017ecc2cf27f 100644 --- a/code/addons/test/src/components/TestProviderRender.tsx +++ b/code/addons/test/src/components/TestProviderRender.tsx @@ -111,6 +111,7 @@ export const TestProviderRender: FC< return state.details?.testResults?.flatMap((result) => result.results + .filter(Boolean) .filter((r) => !entryId || r.storyId === entryId || r.storyId?.startsWith(`${entryId}-`)) .map((r) => r.reports.find((report) => report.type === 'a11y')) );