mattermost-mobile/app/components/user_status/__snapshots__/user_status.test.js.snap

53 lines
951 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(61,60,64,0.3)",
"fontSize": 32,
}
}
testID="user_status.icon.offline"
/>
`;