Repository URL to install this package:
|
Version:
4.0.0-alpha.8 ▾
|
// add some helpful assertions
import 'jest-dom/extend-expect'
// this is basically: afterEach(cleanup)
import 'react-testing-library/cleanup-after-each'
// In tests, polyfill requestAnimationFrame since jsdom doesn't provide it yet.
// We don't polyfill it in the browser--this is user's responsibility.
import { polyfill } from 'raf'
polyfill(global)