We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc33b2 commit 276673fCopy full SHA for 276673f
types/test.tsx
@@ -44,6 +44,15 @@ export function testRenderOptions() {
44
render(<div />, options)
45
}
46
47
+export function testSVGRenderOptions() {
48
+ const container = document.createElementNS(
49
+ 'http://www.w3.org/2000/svg',
50
+ 'svg',
51
+ )
52
+ const options = {container}
53
+ render(<svg />, options)
54
+}
55
+
56
export function testFireEvent() {
57
const {container} = render(<button />)
58
fireEvent.click(container)
0 commit comments