UNPKG

react-cowsay

Version:

A react wrapper for cowsay-browser

14 lines (9 loc) 275 B
import React from 'react'; import { shallow } from 'enzyme'; import Cowsay from '../src/index'; test('Cowsay has text', () => { const cowsay = shallow( <Cowsay>I am a cow</Cowsay> ); expect(cowsay.text()).toEqual(expect.stringContaining('I am a cow')); });