@testing-library/react-hooks
Version:
Simple and complete React hooks testing utilities that encourage good testing practices.
21 lines (18 loc) • 604 B
text/typescript
// This verifies that if process.env is unavailable
// then we still auto-wire up the afterEach for folks
describe('error output suppression (no process.env) tests', () => {
const originalConsoleError = console.error
process.env = {
...process.env,
get RHTL_DISABLE_ERROR_FILTERING(): string | undefined {
throw new Error('expected')
}
}
runForRenderers(['default', 'dom', 'native', 'server'], () => {
test('should patch console.error', () => {
expect(console.error).not.toBe(originalConsoleError)
})
})
})
// eslint-disable-next-line jest/no-export
export {}