This commit is contained in:
Marcos Rodriguez Velez 2024-07-16 00:53:24 -04:00
parent eeeb6d1f64
commit dee42a98b3
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7
2 changed files with 2 additions and 2 deletions

View File

@ -422,7 +422,7 @@ const CoinControl = () => {
backgroundColor={colors.elevated}
footer={
<View style={mStyles.buttonContainer}>
<Button testID="UseCoin" title={loc.cc.use_coin} onPress={() => handleUseCoin(output)} />
<Button testID="UseCoin" title={loc.cc.use_coin} onPress={() => handleUseCoin([output])} />
</View>
}
contentContainerStyle={styles.modalContent}

View File

@ -485,7 +485,7 @@ describe('BlueWallet UI Tests - import BIP84 wallet', () => {
await element(by.text('test1')).atIndex(0).tap();
await element(by.id('OutputMemo')).replaceText('test2');
await element(by.type('android.widget.CompoundButton')).tap(); // freeze switch
await device.pressBack(); // closing modal
await element(by.id('ModalDoneButton')).tap();
await expect(element(by.text('test2')).atIndex(0)).toBeVisible();
await expect(element(by.text('Freeze')).atIndex(0)).toBeVisible();