@@ -40,30 +40,30 @@ export interface RenderOptions<
40
40
* For example: If you are unit testing a `<tbody>` element, it cannot be a child of a div. In this case, you can
41
41
* specify a table as the render container.
42
42
*
43
- * @link https://testing-library.com/docs/react-testing-library/api/#container
43
+ * @see https://testing-library.com/docs/react-testing-library/api/#container
44
44
*/
45
45
container ?: Container
46
46
/** Defaults to the container if the container is specified. Otherwise `document.body` is used for the default. This is used as
47
47
* the base element for the queries as well as what is printed when you use `debug()`.
48
48
*
49
- * @link https://testing-library.com/docs/react-testing-library/api/#baseelement
49
+ * @see https://testing-library.com/docs/react-testing-library/api/#baseelement
50
50
*/
51
51
baseElement ?: Element
52
52
/** If `hydrate` is set to `true`, then it will render with `ReactDOM.hydrate`. This may be useful if you are using server-side
53
53
* rendering and use ReactDOM.hydrate to mount your components.
54
54
*
55
- * @link https://testing-library.com/docs/react-testing-library/api/#hydrate)
55
+ * @see https://testing-library.com/docs/react-testing-library/api/#hydrate)
56
56
*/
57
57
hydrate ?: boolean
58
58
/** Queries to bind. Overrides the default set from DOM Testing Library unless merged.
59
59
*
60
- * @link https://testing-library.com/docs/react-testing-library/api/#queries
60
+ * @see https://testing-library.com/docs/react-testing-library/api/#queries
61
61
*/
62
62
queries ?: Q
63
63
/** Pass a React Component as the wrapper option to have it rendered around the inner element. This is most useful for creating
64
64
* reusable custom render functions for common data providers. See setup for examples.
65
65
*
66
- * @link https://testing-library.com/docs/react-testing-library/api/#wrapper
66
+ * @see https://testing-library.com/docs/react-testing-library/api/#wrapper
67
67
*/
68
68
wrapper ?: React . ComponentType
69
69
}
0 commit comments