Files
diff-viewer-extension/src/components/diff/CadDiff.test.tsx
Pierre Jacquier 0be1f4ef30 Improve diff injection performance (#30)
* Remove await on GetFileDiff
Progress towards #28

* n roots instead of 2n

* Lint

* Trying something with portals

* Portal component, one root

* Fix element clean up, prep for later tasks
2023-03-22 04:46:17 -04:00

7 lines
155 B
TypeScript

import { render } from '@testing-library/react'
import { CadDiff } from './CadDiff'
it('renders the CAD diff element', () => {
render(<CadDiff />)
})