mattermost-mobile/app/screens/saved_posts/__snapshots__/saved_posts.test.js.snap
Joseph Baylon 7aebfd0b13
MM-30286 Detox/E2E: Add e2e test for MM-T3249 and added useful helpers (#4990)
* MM-30286 Detox/E2E: Add e2e test for MM-T3249 and added useful helper functions

* Update app/components/sidebars/main/channels_list/channels_list.js

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>

* Add team icon content helper query

* Fixed reset for teams

* MM-30286 Detox/E2E: Add e2e test for MM-T3235 (#5003)

* MM-30286 Detox/E2E: Add e2e test for MM-T3255 (#5006)

* Fix merge issues

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2020-12-15 17:24:45 -08:00

78 lines
1.8 KiB
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`SavedPosts should match snapshot 1`] = `
<RNCSafeAreaView
style={
Object {
"flex": 1,
}
}
testID="saved_messages.screen"
>
<Connect(StatusBar) />
<Connect(ChannelLoader)
channelIsLoading={true}
/>
</RNCSafeAreaView>
`;
exports[`SavedPosts should match snapshot when component waiting for response 1`] = `
<RNCSafeAreaView
style={
Object {
"flex": 1,
}
}
testID="saved_messages.screen"
>
<Connect(StatusBar) />
<Connect(ChannelLoader)
channelIsLoading={true}
/>
</RNCSafeAreaView>
`;
exports[`SavedPosts should match snapshot when getFlaggedPosts failed 1`] = `
<RNCSafeAreaView
style={
Object {
"flex": 1,
}
}
testID="saved_messages.screen"
>
<Connect(StatusBar) />
<Connect(FailedNetworkAction)
onRetry={[Function]}
theme={
Object {
"awayIndicator": "#ffbc42",
"buttonBg": "#166de0",
"buttonColor": "#ffffff",
"centerChannelBg": "#ffffff",
"centerChannelColor": "#3d3c40",
"codeTheme": "github",
"dndIndicator": "#f74343",
"errorTextColor": "#fd5960",
"linkColor": "#2389d7",
"mentionBg": "#ffffff",
"mentionBj": "#ffffff",
"mentionColor": "#145dbf",
"mentionHighlightBg": "#ffe577",
"mentionHighlightLink": "#166de0",
"newMessageSeparator": "#ff8800",
"onlineIndicator": "#06d6a0",
"sidebarBg": "#145dbf",
"sidebarHeaderBg": "#1153ab",
"sidebarHeaderTextColor": "#ffffff",
"sidebarText": "#ffffff",
"sidebarTextActiveBorder": "#579eff",
"sidebarTextActiveColor": "#ffffff",
"sidebarTextHoverBg": "#4578bf",
"sidebarUnreadText": "#ffffff",
"type": "Mattermost",
}
}
/>
</RNCSafeAreaView>
`;