Merge pull request #1052 from vector-im/michaelk/test_hanging_up_call

Add ability to explicitly hang up the call
This commit is contained in:
Michael Kaye
2023-05-18 18:32:38 +01:00
committed by GitHub

View File

@@ -419,7 +419,9 @@ export function InCallView({
}
}
buttons.push(<HangupButton key="6" onPress={onLeave} />);
buttons.push(
<HangupButton key="6" onPress={onLeave} data-testid="incall_leave" />
);
footer = <div className={styles.footer}>{buttons}</div>;
}