Add report dialog e2e tests (#7913)

This commit is contained in:
Eric Bailey
2025-03-05 18:31:55 -06:00
committed by GitHub
parent 9fde3957e7
commit 3be87fbf3b
7 changed files with 124 additions and 2 deletions
+4 -1
View File
@@ -68,7 +68,10 @@ export type DialogOuterProps = {
testID?: string
}
type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> & T
type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> &
T & {
testID?: string
}
export type DialogInnerProps =
| DialogInnerPropsBase<{
label?: undefined