mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 09:58:11 +08:00
e01d47923d
* Replace: %s/mx_RightPanel_headerButton/mx_RoomHeader_button/g * Conform the selectors to our naming policy: with flag (--) - %s/mx_RoomHeader_button_highlight/mx_RoomHeader_button--highlight/g - %s/mx_RoomHeader_button_unread/mx_RoomHeader_button--unread/g * Update a Jest snapshot * Move the declarations and Sass variables - Move Sass variables to the place where they are used
36 lines
901 B
Plaintext
36 lines
901 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`RoomHeaderButtons-test.tsx should render 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
aria-current="false"
|
|
aria-label="Chat"
|
|
class="mx_AccessibleButton mx_RoomHeader_button mx_RightPanel_timelineCardButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
<div
|
|
aria-current="false"
|
|
aria-label="Threads"
|
|
class="mx_AccessibleButton mx_RoomHeader_button mx_RightPanel_threadsButton"
|
|
data-testid="threadsButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
<div
|
|
aria-current="false"
|
|
aria-label="Notifications"
|
|
class="mx_AccessibleButton mx_RoomHeader_button mx_RightPanel_notifsButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
<div
|
|
aria-current="false"
|
|
aria-label="Room info"
|
|
class="mx_AccessibleButton mx_RoomHeader_button mx_RightPanel_roomSummaryButton"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
</DocumentFragment>
|
|
`;
|