diff --git a/src/core/client/stream/components/App.spec.tsx b/src/core/client/stream/components/App.spec.tsx index dcd979099..2afc61f74 100644 --- a/src/core/client/stream/components/App.spec.tsx +++ b/src/core/client/stream/components/App.spec.tsx @@ -1,14 +1,9 @@ import { shallow } from "enzyme"; import React from "react"; -import { PropTypesOf } from "talk-framework/types"; - -import App from "./App"; +import AppContainer from "../containers/AppContainer"; it("renders comments", () => { - const props: PropTypesOf = { - activeTab: "COMMENTS", - }; - const wrapper = shallow(); + const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); diff --git a/src/core/client/stream/components/__snapshots__/App.spec.tsx.snap b/src/core/client/stream/components/__snapshots__/App.spec.tsx.snap index 63158c983..9a2441a63 100644 --- a/src/core/client/stream/components/__snapshots__/App.spec.tsx.snap +++ b/src/core/client/stream/components/__snapshots__/App.spec.tsx.snap @@ -1,32 +1,3 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`renders comments 1`] = ` - - - - Comments - - - - - - - - - - - -`; +exports[`renders comments 1`] = ``;