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 {
setupStore,
const {
PAGE_TYPES,
} = require("resource://devtools/client/application/src/constants.js");
const Sidebar = createFactory(
require("resource://devtools/client/application/src/components/routing/Sidebar.js")
);
/**
* Test for Sidebar.js component
*/
describe("Sidebar", () => {
function buildStoreWithSelectedPage(selectedPage) {
return setupStore({
ui: {
selectedPage,
},
});
}
it("renders the expected snapshot when the manifest page is selected", () => {
const store = buildStoreWithSelectedPage(PAGE_TYPES.MANIFEST);
const wrapper = shallow(Sidebar({ store })).dive();
expect(wrapper).toMatchSnapshot();
});
it("renders the expected snapshot when the service workers page is selected", () => {
const store = buildStoreWithSelectedPage(PAGE_TYPES.SERVICE_WORKERS);
const wrapper = shallow(Sidebar({ store })).dive();
expect(wrapper).toMatchSnapshot();
});
it("renders the expected snapshot when no page is selected", () => {
const store = buildStoreWithSelectedPage();
const wrapper = shallow(Sidebar({ store })).dive();
expect(wrapper).toMatchSnapshot();
});
});