mattermost-mobile/app/components/user_status/__snapshots__/user_status.test.js.snap
Joseph Baylon 25ae8fdb88
Detox/E2E: Account e2e tests in Gekidou (#6584)
* Detox/E2E: Account e2e tests in Gekidou

* Fix suite title

* Changed ldap port to number

* Fix testIDs for settings

* Added zephyr test case keys
2022-08-18 03:18:46 -07:00

53 lines
947 B
Text

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