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:
commit
8451296f3a
1 changed files with 3 additions and 1 deletions
|
@ -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>;
|
footer = <div className={styles.footer}>{buttons}</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue