Enzyme works well with Tape and AVA. Simply install it and start using it:
npm i --save-dev enzyme
import test from 'tape'
import React from 'react'
import { shallow, mount } from 'enzyme';
import Foo from '../path/to/foo'
test('shallow', t => {
const wrapper = shallow(<Foo />)
t.equal(wrapper.contains(<span>Foo</span>), true)
})
test('mount', t => {
const wrapper = mount(<Foo />)
const fooInner = wrapper.find('.foo-inner')
t.equal(fooInner.is('.foo-inner'), true)
})
import test from 'ava'
import React from 'react'
import { shallow, mount } from 'enzyme';
import Foo from '../path/to/foo'
test('shallow', t => {
const wrapper = shallow(<Foo />)
t.is(wrapper.contains(<span>Foo</span>), true)
})
test('mount', t => {
const wrapper = mount(<Foo />)
const fooInner = wrapper.find('.foo-inner')
t.is(fooInner.is('.foo-inner'), true)
})