summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/compatibility/test/node/components/__snapshots__/components-compatibility-IssuePane.test.js.snap
blob: 579c1c142951b9cfa107e09379b90bf5e7c3e32b (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`IssuePane component renders no issues 1`] = `
<Localized
  id="compatibility-no-issues-found"
>
  <p
    className="devtools-sidepanel-no-result"
  >
    compatibility-no-issues-found
  </p>
</Localized>
`;

exports[`IssuePane component renders some issues 1`] = `
<IssueList
  issues={
    Array [
      Object {
        "deprecated": false,
        "experimental": true,
        "property": "border-block-color",
        "type": "CSS_PROPERTY",
        "unsupportedBrowsers": Array [],
        "url": "https://developer.mozilla.org/docs/Web/CSS/border-block-color",
      },
      Object {
        "aliases": Array [
          "user-modify",
        ],
        "deprecated": true,
        "experimental": false,
        "property": "user-modify",
        "type": "CSS_PROPERTY_ALIASES",
        "unsupportedBrowsers": Array [],
        "url": "https://developer.mozilla.org/docs/Web/CSS/user-modify",
      },
    ]
  }
/>
`;