zapify-ui/zapify

View on GitHub
src/components/Media/Media.test.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from "react";
import renderer from "react-test-renderer";
import Media from "./index";

test("Media default test case", () => {
  const component = renderer.create(
    <Media typeGet="linear">
      Lorem Ipsum is simply dummy text of the printing and typesetting industry.
      Lorem Ipsum has been the industry's standard dummy.
    </Media>
  );
  const tree = component.toJSON();
  expect(tree).toMatchSnapshot();
});