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

exports[`ManifestSection renders the expected snapshot for a populated section 1`] = `
<section
  className="manifest-section "
>
  <h2
    className="manifest-section__title"
  >
    Lorem ipsum
  </h2>
  <tr>
    <td>
      foo
    </td>
  </tr>
</section>
`;

exports[`ManifestSection renders the expected snapshot for a section with no children 1`] = `
<section
  className="manifest-section manifest-section--empty"
>
  <h2
    className="manifest-section__title"
  >
    Lorem ipsum
  </h2>
</section>
`;