ChannelSummary.test.js 517 B

1234567891011121314151617181920
  1. import React from "react"
  2. import { mount } from "enzyme"
  3. import ChannelSummary from "./../src/components/ChannelSummary"
  4. describe("ChannelSummary component", () => {
  5. const component = mount(
  6. <ChannelSummary
  7. img={"https://s3.amazonaws.com/keybase_processed_uploads/9003a57620356bd89d62bd34c7c0c305_360_360.jpg"}
  8. size="default"
  9. name={"Test channel"}
  10. isPublic={true}
  11. isVerified={true}
  12. />)
  13. it("Should render correctly", () => {
  14. expect(component).toMatchSnapshot()
  15. })
  16. })