summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/test/node/components/manifest/__snapshots__/components_application_panel-ManifestItem.test.js.snap
blob: 69d983d3082275b0f46818331244a0496f2562f4 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ManifestItem renders the expected snapshot for a populated item 1`] = `
<tr
  className="manifest-item js-manifest-item"
>
  <th
    className="manifest-item__label js-manifest-item-label"
    scope="row"
  >
    foo
  </th>
  <td
    className="manifest-item__value js-manifest-item-content"
  >
    bar
  </td>
</tr>
`;

exports[`ManifestItem renders the expected snapshot for an empty item 1`] = `
<tr
  className="manifest-item js-manifest-item"
>
  <th
    className="manifest-item__label js-manifest-item-label"
    scope="row"
  >
    foo
  </th>
  <td
    className="manifest-item__value js-manifest-item-content"
  />
</tr>
`;