DetailsTable.test.js 484 B

1234567891011121314151617181920
  1. import React from "react"
  2. import { mount } from "enzyme"
  3. import DetailsTable from "./../src/components/DetailsTable"
  4. describe("DetailsTable component", () => {
  5. const component = mount(<DetailsTable details={{
  6. explicit: "yes",
  7. "first released": "2019-02-27",
  8. language: "English",
  9. category: "Science & Technology",
  10. license: "Original content",
  11. attribution: ""
  12. }} />)
  13. it("Should render correctly", () => {
  14. expect(component).toMatchSnapshot()
  15. })
  16. })