mattermost-mobile/app/components/user_status/__snapshots__/user_status.test.js.snap
Elias Nahum f36ee37402
Upgrade to RN 0.59.6 and dependencies (#2777)
* Upgrade to RN 0.59.6 and dependencies

* Remove channel loader unused style

* Update to the latest netInfo that fixes a crash

* Do not set default timezone with moment

* Use RN 0.59.8
2019-05-13 13:33:18 -04:00

69 lines
1.2 KiB
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`UserStatus should match snapshot, away status 1`] = `
<Image
source={
Object {
"testUri": "../../../dist/assets/images/status/away.png",
}
}
style={
Object {
"height": 32,
"tintColor": "#ffbc42",
"width": 32,
}
}
/>
`;
exports[`UserStatus should match snapshot, dnd status 1`] = `
<Image
source={
Object {
"testUri": "../../../dist/assets/images/status/dnd.png",
}
}
style={
Object {
"height": 32,
"tintColor": "#f74343",
"width": 32,
}
}
/>
`;
exports[`UserStatus should match snapshot, online status 1`] = `
<Image
source={
Object {
"testUri": "../../../dist/assets/images/status/online.png",
}
}
style={
Object {
"height": 32,
"tintColor": "#06d6a0",
"width": 32,
}
}
/>
`;
exports[`UserStatus should match snapshot, should default to offline status 1`] = `
<Image
source={
Object {
"testUri": "../../../dist/assets/images/status/offline.png",
}
}
style={
Object {
"height": 32,
"tintColor": "rgba(61,60,64,0.3)",
"width": 32,
}
}
/>
`;