Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import * as React from 'react'
let render
beforeAll(() => {
process.env.RTL_SKIP_AUTO_CLEANUP = 'true'
const rtl = require('../')
render = rtl.render
})
// This one verifies that if RTL_SKIP_AUTO_CLEANUP is set
// then we DON'T auto-wire up the afterEach for folks
test('first', () => {
render(<div>hi</div>)
})
test('second', () => {
expect(document.body.innerHTML).toEqual('<div><div>hi</div></div>')
})