grafana/public/app/features/org/__snapshots__/OrgDetailsPage.test.tsx.snap

51 lines
830 B
Plaintext
Raw Normal View History

2018-10-29 07:46:12 -05:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Render should render component 1`] = `
2019-01-16 09:29:07 -06:00
<Page
navModel={
Object {
"main": Object {
"text": "Configuration",
},
"node": Object {
"text": "Org details",
},
2019-01-16 09:29:07 -06:00
}
}
>
2019-01-16 09:29:07 -06:00
<PageContents
isLoading={true}
/>
2019-01-16 09:29:07 -06:00
</Page>
2018-10-29 07:46:12 -05:00
`;
exports[`Render should render organization and preferences 1`] = `
2019-01-16 09:29:07 -06:00
<Page
navModel={
Object {
"main": Object {
"text": "Configuration",
},
"node": Object {
"text": "Org details",
},
2019-01-16 09:29:07 -06:00
}
}
>
2019-01-16 09:29:07 -06:00
<PageContents
isLoading={false}
2018-10-29 07:46:12 -05:00
>
<div>
<OrgProfile
onOrgNameChange={[Function]}
onSubmit={[Function]}
orgName="Cool org"
/>
<SharedPreferences
resourceUri="org"
/>
2018-10-29 07:46:12 -05:00
</div>
2019-01-16 09:29:07 -06:00
</PageContents>
</Page>
2018-10-29 07:46:12 -05:00
`;