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
commit 8451296f3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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>;
}