add class for message case for e2e tests

This commit is contained in:
Bruno Windels 2019-04-17 11:46:04 +02:00
parent 22874f62ab
commit 8e750e18d7

View file

@ -227,7 +227,8 @@ module.exports = React.createClass({
let secondaryActionHandler; let secondaryActionHandler;
let secondaryActionLabel; let secondaryActionLabel;
switch (this._getMessageCase()) { const messageCase = this._getMessageCase();
switch (messageCase) {
case MessageCase.Joining: { case MessageCase.Joining: {
title = _t("Joining room …"); title = _t("Joining room …");
showSpinner = true; showSpinner = true;
@ -418,7 +419,7 @@ module.exports = React.createClass({
); );
} }
const classes = classNames("mx_RoomPreviewBar", "dark-panel", { const classes = classNames("mx_RoomPreviewBar", "dark-panel", `mx_RoomPreviewBar_${messageCase}`, {
"mx_RoomPreviewBar_panel": this.props.canPreview, "mx_RoomPreviewBar_panel": this.props.canPreview,
"mx_RoomPreviewBar_dialog": !this.props.canPreview, "mx_RoomPreviewBar_dialog": !this.props.canPreview,
"mx_RoomPreviewBar_dark": darkStyle, "mx_RoomPreviewBar_dark": darkStyle,