mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
51 lines
830 B
Plaintext
51 lines
830 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<Page
|
|
navModel={
|
|
Object {
|
|
"main": Object {
|
|
"text": "Configuration",
|
|
},
|
|
"node": Object {
|
|
"text": "Org details",
|
|
},
|
|
}
|
|
}
|
|
>
|
|
<PageContents
|
|
isLoading={true}
|
|
/>
|
|
</Page>
|
|
`;
|
|
|
|
exports[`Render should render organization and preferences 1`] = `
|
|
<Page
|
|
navModel={
|
|
Object {
|
|
"main": Object {
|
|
"text": "Configuration",
|
|
},
|
|
"node": Object {
|
|
"text": "Org details",
|
|
},
|
|
}
|
|
}
|
|
>
|
|
<PageContents
|
|
isLoading={false}
|
|
>
|
|
<div>
|
|
<OrgProfile
|
|
onOrgNameChange={[Function]}
|
|
onSubmit={[Function]}
|
|
orgName="Cool org"
|
|
/>
|
|
<SharedPreferences
|
|
resourceUri="org"
|
|
/>
|
|
</div>
|
|
</PageContents>
|
|
</Page>
|
|
`;
|