Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
"use strict";
// Import libs
const { shallow } = require("enzyme");
const { createFactory } = require("react");
const ManifestJsonLink = createFactory(
  require("resource://devtools/client/application/src/components/manifest/ManifestJsonLink.js")
);
/*
 * Test for the ManifestJsonLink component
 */
describe("ManifestJsonLink", () => {
  it("renders the expected snapshot when given a regular URL", () => {
    const wrapper = shallow(
    );
    expect(wrapper).toMatchSnapshot();
  });
  it("renders the expected snapshot when given a data URL", () => {
    const wrapper = shallow(
      ManifestJsonLink({
        url: `data:application/manifest+json,{"name": "Foo"}`,
      })
    );
    expect(wrapper).toMatchSnapshot();
    // assert there's no link for data URLs
    expect(wrapper.find("a").length).toBe(0);
  });
});