7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
|
import {cleanup} from 'react-testing-library'
|
||
|
|
||
|
// cleans up state between react-testing-library tests
|
||
|
afterEach(() => {
|
||
|
cleanup()
|
||
|
})
|