| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Render should render component 1`] = `
- <li
- className="card-item-wrapper"
- >
- <a
- className="card-item"
- href="plugins/1/edit"
- >
- <div
- className="card-item-header"
- >
- <div
- className="card-item-type"
- >
- <i
- className="icon-gf icon-gf-"
- />
- </div>
- </div>
- <div
- className="card-item-body"
- >
- <figure
- className="card-item-figure"
- >
- <img
- src="small/logo"
- />
- </figure>
- <div
- className="card-item-details"
- >
- <div
- className="card-item-name"
- >
- pretty cool plugin 1
- </div>
- <div
- className="card-item-sub-name"
- >
- By Grafana Labs
- </div>
- </div>
- </div>
- </a>
- </li>
- `;
- exports[`Render should render has plugin section 1`] = `
- <li
- className="card-item-wrapper"
- >
- <a
- className="card-item"
- href="plugins/1/edit"
- >
- <div
- className="card-item-header"
- >
- <div
- className="card-item-type"
- >
- <i
- className="icon-gf icon-gf-"
- />
- </div>
- <div
- className="card-item-notice"
- >
- <span
- bs-tooltip="plugin.latestVersion"
- >
- Update available!
- </span>
- </div>
- </div>
- <div
- className="card-item-body"
- >
- <figure
- className="card-item-figure"
- >
- <img
- src="small/logo"
- />
- </figure>
- <div
- className="card-item-details"
- >
- <div
- className="card-item-name"
- >
- pretty cool plugin 1
- </div>
- <div
- className="card-item-sub-name"
- >
- By Grafana Labs
- </div>
- </div>
- </div>
- </a>
- </li>
- `;
|