Skip to content

Commit

Permalink
chore: add testID (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten-stripe committed Jun 2, 2021
1 parent ce43237 commit 967bdbe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/ApplePayButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export interface Props extends AccessibilityProps {
buttonStyle?: ApplePayButtonComponent.Styles;
borderRadius?: number;
onPress(): void;
testID?: string;
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/components/AuBECSDebitForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface Props extends AccessibilityProps {
onComplete(value: AuBECSDebitFormComponent.FormDetails): void;
formStyle?: AuBECSDebitFormComponent.Styles;
style?: StyleProp<ViewStyle>;
testID?: string;
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/components/CardField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface Props extends AccessibilityProps {
autofocus?: boolean;
onCardChange?(card: CardFieldInput.Details): void;
onFocus?(focusedField: Nullable<CardFieldInput.Names>): void;
testID?: string;
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/components/StripeContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface Props {
children: React.ReactElement | React.ReactElement[];
keyboardShouldPersistTaps?: boolean;
style?: StyleProp<ViewStyle>;
testID?: string;
}

/**
Expand Down

0 comments on commit 967bdbe

Please sign in to comment.