diff --git a/packages/store-ui/src/atoms/Badge/Badge.tsx b/packages/store-ui/src/atoms/Badge/Badge.tsx index 544ca7a87a..c86be8949f 100644 --- a/packages/store-ui/src/atoms/Badge/Badge.tsx +++ b/packages/store-ui/src/atoms/Badge/Badge.tsx @@ -2,6 +2,9 @@ import type { ReactNode, ForwardedRef } from 'react' import React, { forwardRef } from 'react' export interface BadgeProps { + /** + * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). + */ testId?: string children?: ReactNode }