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

exports[`IssueList component renders some issues 1`] = `
<ul
  className="compatibility-issue-list"
>
  <IssueItem
    deprecated={false}
    experimental={true}
    property="border-block-color"
    type="CSS_PROPERTY"
    unsupportedBrowsers={Array []}
    url="https://developer.mozilla.org/docs/Web/CSS/border-block-color"
  />
  <IssueItem
    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"
  />
</ul>
`;