Avatar.test.js 373 B

12345678910111213
  1. import React from "react"
  2. import { mount } from "enzyme"
  3. import Avatar from "./../src/components/Avatar"
  4. describe("Avatar component", () => {
  5. const component = mount(<Avatar img="https://s3.amazonaws.com/keybase_processed_uploads/9003a57620356bd89d62bd34c7c0c305_360_360.jpg" />)
  6. it("Should render correctly", () => {
  7. expect(component).toMatchSnapshot()
  8. })
  9. })