mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Migrate shared preferences * Remove unused import * Migrate org name form * Update TeamSettings * Convert user settings * Fix inital default values * Update snapshots * Fix CI errors * Fix failing Ci * Update snapshots * Large spacing * Move use Form for OrgSettings and add FieldSet * Remove snapshots * Add snapshots * Remove unused prop
50 lines
805 B
Plaintext
50 lines
805 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}
|
|
>
|
|
<Component>
|
|
<OrgProfile
|
|
onSubmit={[Function]}
|
|
orgName="Cool org"
|
|
/>
|
|
<SharedPreferences
|
|
resourceUri="org"
|
|
/>
|
|
</Component>
|
|
</PageContents>
|
|
</Page>
|
|
`;
|