diff --git a/addons/background/src/__tests__/index.tsx b/addons/background/src/__tests__/index.tsx index 6927e1c18c3..d9efa600a5f 100644 --- a/addons/background/src/__tests__/index.tsx +++ b/addons/background/src/__tests__/index.tsx @@ -56,4 +56,22 @@ describe("Background Decorator", () => { expect(spy).toBeCalled(); }); + + it("should update story on change", () => { + const SpiedChannel = new EventEmitter(); + const nextStory = jest.fn(() =>

I am next story!

); + const backgroundDecorator = shallow(); + + backgroundDecorator.setProps({ story: nextStory }); + expect(nextStory).toBeCalled(); + }); + + it("should not update story on other props change", () => { + const SpiedChannel = new EventEmitter(); + const story = jest.fn(() =>

I am the only one!

); + const backgroundDecorator = shallow(); + + backgroundDecorator.setProps({ randomProp: true }); + expect(story.mock.calls.length).toBe(1); + }); });