diff options
Diffstat (limited to 'src/screens/Signup')
-rw-r--r-- | src/screens/Signup/StepHandle.tsx | 1 | ||||
-rw-r--r-- | src/screens/Signup/StepInfo/index.tsx | 2 | ||||
-rw-r--r-- | src/screens/Signup/index.tsx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx index 44a33b833..2266f4387 100644 --- a/src/screens/Signup/StepHandle.tsx +++ b/src/screens/Signup/StepHandle.tsx @@ -58,6 +58,7 @@ export function StepHandle() { <TextField.Root> <TextField.Icon icon={At} /> <TextField.Input + testID="handleInput" onChangeText={onHandleChange} label={_(msg`Input your user handle`)} defaultValue={state.handle} diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index d22d1323a..4104b79b3 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -82,6 +82,7 @@ export function StepInfo() { <TextField.Root> <TextField.Icon icon={Envelope} /> <TextField.Input + testID="emailInput" onChangeText={value => { dispatch({ type: 'setEmail', @@ -103,6 +104,7 @@ export function StepInfo() { <TextField.Root> <TextField.Icon icon={Lock} /> <TextField.Input + testID="passwordInput" onChangeText={value => { dispatch({ type: 'setPassword', diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index e17461588..7708599fb 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -196,6 +196,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { </Button> ) : ( <Button + testID="nextBtn" label={_(msg`Continue to next step`)} variant="solid" color="primary" |