summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/test/node/components/manifest/__snapshots__/components_application_panel-ManifestIssue.test.js.snap
blob: 99e83af1f22c0570342fc71e4a353f453d0705d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ManifestIssue renders the expected snapshot for a warning 1`] = `
<li
  className="js-manifest-issue "
>
  <Localized
    attrs={
      Object {
        "alt": true,
        "title": true,
      }
    }
    id="icon-warning"
  >
    <img
      className="manifest-issue__icon manifest-issue__icon--warning"
      src="chrome://devtools/skin/images/alert-small.svg"
    />
  </Localized>
  <span>
    Lorem ipsum
  </span>
</li>
`;

exports[`ManifestIssue renders the expected snapshot for an error 1`] = `
<li
  className="js-manifest-issue "
>
  <Localized
    attrs={
      Object {
        "alt": true,
        "title": true,
      }
    }
    id="icon-error"
  >
    <img
      className="manifest-issue__icon manifest-issue__icon--error"
      src="resource://devtools-shared-images/error-small.svg"
    />
  </Localized>
  <span>
    Lorem ipsum
  </span>
</li>
`;