| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Render should render component 1`] = `
- <Page
- navModel={
- Object {
- "main": Object {
- "text": "Configuration",
- },
- "node": Object {
- "text": "Plugins",
- },
- }
- }
- >
- <PageContents
- isLoading={true}
- >
- <OrgActionBar
- layoutMode="grid"
- linkButton={
- Object {
- "href": "https://grafana.com/plugins?utm_source=grafana_plugin_list",
- "title": "Find more plugins on Grafana.com",
- }
- }
- onSetLayoutMode={[Function]}
- searchQuery=""
- setSearchQuery={[Function]}
- />
- </PageContents>
- </Page>
- `;
- exports[`Render should render list 1`] = `
- <Page
- navModel={
- Object {
- "main": Object {
- "text": "Configuration",
- },
- "node": Object {
- "text": "Plugins",
- },
- }
- }
- >
- <PageContents
- isLoading={false}
- >
- <OrgActionBar
- layoutMode="grid"
- linkButton={
- Object {
- "href": "https://grafana.com/plugins?utm_source=grafana_plugin_list",
- "title": "Find more plugins on Grafana.com",
- }
- }
- onSetLayoutMode={[Function]}
- searchQuery=""
- setSearchQuery={[Function]}
- />
- <PluginList
- layoutMode="grid"
- plugins={Array []}
- />
- </PageContents>
- </Page>
- `;
|