mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
added test for default background swatch showing
This commit is contained in:
parent
3d2856959e
commit
a309d38a33
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user