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.
28 lines
541 B
28 lines
541 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<VerticalGroup>
|
|
<FieldSet
|
|
label="Team settings"
|
|
>
|
|
<Form
|
|
defaultValues={
|
|
Object {
|
|
"avatarUrl": "some/url/",
|
|
"email": "test@test.com",
|
|
"id": 1,
|
|
"memberCount": 1,
|
|
"name": "test",
|
|
"permission": 0,
|
|
}
|
|
}
|
|
onSubmit={[Function]}
|
|
>
|
|
<Component />
|
|
</Form>
|
|
</FieldSet>
|
|
<SharedPreferences
|
|
resourceUri="teams/1"
|
|
/>
|
|
</VerticalGroup>
|
|
`;
|
|
|