| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Render should render component 1`] = `
- <section
- className="card-section card-list-layout-grid"
- >
- <ol
- className="card-list"
- >
- <PluginListItem
- key="pretty cool plugin-0-0"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "0",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/0",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.0",
- "module": Object {},
- "name": "pretty cool plugin-0",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- <PluginListItem
- key="pretty cool plugin-1-1"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "1",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/1",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.1",
- "module": Object {},
- "name": "pretty cool plugin-1",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- <PluginListItem
- key="pretty cool plugin-2-2"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "2",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/2",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.2",
- "module": Object {},
- "name": "pretty cool plugin-2",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- <PluginListItem
- key="pretty cool plugin-3-3"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "3",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/3",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.3",
- "module": Object {},
- "name": "pretty cool plugin-3",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- <PluginListItem
- key="pretty cool plugin-4-4"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "4",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/4",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.4",
- "module": Object {},
- "name": "pretty cool plugin-4",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- <PluginListItem
- key="pretty cool plugin-5-5"
- plugin={
- Object {
- "defaultNavUrl": "some/url",
- "enabled": false,
- "hasUpdate": false,
- "id": "5",
- "info": Object {
- "author": Object {
- "name": "Grafana Labs",
- "url": "url/to/GrafanaLabs",
- },
- "description": "pretty decent plugin",
- "links": Array [
- "one link",
- ],
- "logos": Object {
- "large": "large/logo",
- "small": "small/logo",
- },
- "screenshots": "screenshot/5",
- "updated": "2018-09-26",
- "version": "1",
- },
- "latestVersion": "1.5",
- "module": Object {},
- "name": "pretty cool plugin-5",
- "pinned": false,
- "state": "",
- "type": "",
- }
- }
- />
- </ol>
- </section>
- `;
|