* MM-34407 Use Avatars for Sidebar DMs * Update app/components/channel_icon.js Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com> * UI feedback * Align the private channel icon Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
53 lines
955 B
Text
53 lines
955 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`UserStatus should match snapshot, away status 1`] = `
|
|
<CompassIcon
|
|
name="clock"
|
|
style={
|
|
Object {
|
|
"color": "#ffbc42",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
testID="user_status.icon.away"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, dnd status 1`] = `
|
|
<CompassIcon
|
|
name="minus-circle"
|
|
style={
|
|
Object {
|
|
"color": "#f74343",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
testID="user_status.icon.dnd"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, online status 1`] = `
|
|
<CompassIcon
|
|
name="check-circle"
|
|
style={
|
|
Object {
|
|
"color": "#06d6a0",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
testID="user_status.icon.online"
|
|
/>
|
|
`;
|
|
|
|
exports[`UserStatus should match snapshot, should default to offline status 1`] = `
|
|
<CompassIcon
|
|
name="circle-outline"
|
|
style={
|
|
Object {
|
|
"color": "rgba(184,184,184,0.64)",
|
|
"fontSize": 32,
|
|
}
|
|
}
|
|
testID="user_status.icon.offline"
|
|
/>
|
|
`;
|