Release 1.77.0 (#3549)

* A couple test fixes

* Intl extract
This commit is contained in:
Paul Frazee
2024-04-13 20:44:14 -07:00
committed by GitHub
parent 0b43d728e4
commit 4b69948366
22 changed files with 9473 additions and 8300 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import {resolveConfig} from 'detox/internals'
import {execSync} from 'child_process'
import {resolveConfig} from 'detox/internals'
import http from 'http'
const platform = device.getPlatform()
@@ -52,7 +52,7 @@ export async function login(
if (await isVisible('chooseAccountForm')) {
await element(by.id('chooseNewAccountBtn')).tap()
}
await element(by.id('loginSelectServiceButton')).tap()
await element(by.id('selectServiceButton')).tap()
if (takeScreenshots) {
await device.takeScreenshot('2- opened service selector')
}
+1 -1
View File
@@ -41,7 +41,7 @@ export function HostingProvider({
onSelect={onSelectServiceUrl}
/>
<Button
testID="loginSelectServiceButton"
testID="selectServiceButton"
label={toNiceDomain(serviceUrl)}
accessibilityHint={_(msg`Press to change hosting provider`)}
variant="solid"
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+1
View File
@@ -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}
+2
View File
@@ -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',
+1
View File
@@ -196,6 +196,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) {
</Button>
) : (
<Button
testID="nextBtn"
label={_(msg`Continue to next step`)}
variant="solid"
color="primary"