added test for default background swatch showing

This commit is contained in:
Jake Dawkins 2016-09-01 08:38:11 -04:00 committed by Norbert de Langen
parent 3d2856959e
commit a309d38a33

View File

@ -56,17 +56,18 @@ describe("Background Panel", () => {
}) })
// it("should accept colors through channel and render the correct swatches with a default swatch", () => { it("should accept colors through channel and render the correct swatches with a default swatch", () => {
// const SpiedChannel = new EventEmitter(); const SpiedChannel = new EventEmitter();
// const backgroundPanel = TestUtils.renderIntoDocument(<BackgroundPanel channel={SpiedChannel} api={mockedApi} />); const backgroundPanel = TestUtils.renderIntoDocument(<BackgroundPanel channel={SpiedChannel}/>);
// SpiedChannel.emit("background-set", backgrounds); SpiedChannel.emit("background-set", backgrounds);
// expect(backgroundPanel.state.backgrounds[0].name).toBe(backgrounds[0].name); expect(backgroundPanel.state.backgrounds[0].name).toBe(backgrounds[0].name);
// expect(backgroundPanel.state.backgrounds[2].value).toBe(backgrounds[2].value); expect(backgroundPanel.state.backgrounds[2].value).toBe(backgrounds[2].value);
// //check to make sure the default bg was added //check to make sure the default bg was added
// expect(backgroundPanel.state.backgrounds[4].value).toBe("transparent"); const headings = TestUtils.scryRenderedDOMComponentsWithTag(backgroundPanel, "h4");
// }); expect(headings.length).toBe(10);
});
it("should pass the event from swatch clicks through the provided channel", () => { it("should pass the event from swatch clicks through the provided channel", () => {
const SpiedChannel = new EventEmitter(); const SpiedChannel = new EventEmitter();