Skip to content

Commit

Permalink
fix: fix non regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
salimtb committed Oct 13, 2024
1 parent 247686d commit dbcee30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1769,6 +1769,7 @@ export class NetworkSettings extends PureComponent {
autoCapitalize={'none'}
autoCorrect={false}
value={nickname}
editable={!this.isAnyModalVisible()}
onChangeText={this.onNicknameChange}
placeholder={strings('app_settings.network_name_placeholder')}
placeholderTextColor={colors.text.muted}
Expand Down Expand Up @@ -1877,6 +1878,7 @@ export class NetworkSettings extends PureComponent {
autoCapitalize={'none'}
autoCorrect={false}
value={chainId}
editable={!this.isAnyModalVisible()}
onChangeText={this.onChainIDChange}
onBlur={() => {
this.validateChainId();
Expand All @@ -1901,6 +1903,7 @@ export class NetworkSettings extends PureComponent {
autoCapitalize={'none'}
autoCorrect={false}
value={ticker}
editable={!this.isAnyModalVisible()}
onChangeText={this.onTickerChange}
onBlur={() => {
this.validateSymbol();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ describe(
await Assertions.checkIfVisible(Browser.browserScreenID);
await Browser.tapNetworkAvatarButtonOnBrowser();
await Assertions.checkIfNotVisible(ConnectedAccountsModal.title);
await NetworkListModal.scrollToBottomOfNetworkList();
await Assertions.checkIfVisible(NetworkListModal.testNetToggle);
},
);
Expand Down

0 comments on commit dbcee30

Please sign in to comment.