mattermost-mobile/app/components/user_status/__snapshots__/user_status.test.js.snap
Elias Nahum 5c7e89d7de
[Gekidou] update deps (#6667)
* Fix login not showing the usernames (#6652)

* update dependencies

* feedback review

* feedback review 2

* remove unused dependencies

* remove duplicate gesture-handler dependency

* add -XX:+HeapDumpOnOutOfMemoryError to gradle

* adjust gradle memory

* update android ci image

* android executor xlarge

Co-authored-by: Daniel Espino García <larkox@gmail.com>
2022-10-13 08:41:18 -03:00

53 lines
919 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`UserStatus should match snapshot, away status 1`] = `
<Icon
name="clock"
style={
{
"color": "#ffbc1f",
"fontSize": 32,
}
}
testID="user_status.indicator.away"
/>
`;
exports[`UserStatus should match snapshot, dnd status 1`] = `
<Icon
name="minus-circle"
style={
{
"color": "#d24b4e",
"fontSize": 32,
}
}
testID="user_status.indicator.dnd"
/>
`;
exports[`UserStatus should match snapshot, online status 1`] = `
<Icon
name="check-circle"
style={
{
"color": "#3db887",
"fontSize": 32,
}
}
testID="user_status.indicator.online"
/>
`;
exports[`UserStatus should match snapshot, should default to offline status 1`] = `
<Icon
name="circle-outline"
style={
{
"color": "rgba(184,184,184,0.64)",
"fontSize": 32,
}
}
testID="user_status.indicator.offline"
/>
`;