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

exports[`ManifestJsonLink renders the expected snapshot when given a data URL 1`] = `
<p
  className="manifest-json-link"
>
  <Localized
    id="manifest-json-link-data-url"
  />
</p>
`;

exports[`ManifestJsonLink renders the expected snapshot when given a regular URL 1`] = `
<p
  className="manifest-json-link"
>
  <a
    className="js-manifest-json-link devtools-ellipsis-text"
    href="#"
    onClick={[Function]}
    title="https://example.com/manifest.json"
  >
    https://example.com/manifest.json
  </a>
</p>
`;