forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
862 B
52 lines
862 B
// 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}
|
|
>
|
|
<VerticalGroup
|
|
spacing="lg"
|
|
>
|
|
<OrgProfile
|
|
onSubmit={[Function]}
|
|
orgName="Cool org"
|
|
/>
|
|
<SharedPreferences
|
|
disabled={false}
|
|
resourceUri="org"
|
|
/>
|
|
</VerticalGroup>
|
|
</PageContents>
|
|
</Page>
|
|
`;
|
|
|