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

exports[`NodeList component renders a node 1`] = `
<ul
  className="compatibility-node-list"
>
  <NodeItem
    node={
      Object {
        "actorID": "test-actor",
        "attributes": Array [],
        "nodeName": "test-element",
        "nodeType": 1,
      }
    }
  />
</ul>
`;

exports[`NodeList component renders some nodes 1`] = `
<ul
  className="compatibility-node-list"
>
  <NodeItem
    node={
      Object {
        "actorID": "test-actor-1",
        "attributes": Array [],
        "nodeName": "test-element-1",
        "nodeType": 1,
      }
    }
  />
  <NodeItem
    node={
      Object {
        "actorID": "test-actor-2",
        "attributes": Array [],
        "nodeName": "test-element-2",
        "nodeType": 1,
      }
    }
  />
</ul>
`;