influxdb/ui/jestSetup.ts

11 lines
242 B
TypeScript
Raw Normal View History

import {cleanup} from 'react-testing-library'
2020-01-09 17:10:25 +00:00
import 'intersection-observer'
jest.mock('honeybadger-js', () => () => null)
process.env.API_PREFIX = '/'
// cleans up state between react-testing-library tests
afterEach(() => {
cleanup()
})