@knighted/jsx 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ A runtime JSX template tag backed by the [`oxc-parser`](https://github.com/oxc-p
|
|
|
20
20
|
- [Node / SSR usage](#node--ssr-usage)
|
|
21
21
|
- [Next.js integration](#nextjs-integration)
|
|
22
22
|
- [Browser usage](#browser-usage)
|
|
23
|
+
- [Component testing](docs/testing.md)
|
|
23
24
|
- [Testing & demos](#testing)
|
|
24
25
|
- [CLI setup](docs/cli.md)
|
|
25
26
|
|
|
@@ -337,6 +338,10 @@ Each lite subpath ships the same API as its standard counterpart but is pre-mini
|
|
|
337
338
|
|
|
338
339
|
## Testing
|
|
339
340
|
|
|
341
|
+
Looking for guidance on testing your own components with `jsx` or `reactJsx`? See
|
|
342
|
+
[docs/testing.md](docs/testing.md) for DOM and React runtime examples. The commands
|
|
343
|
+
below cover the library's internal test suites.
|
|
344
|
+
|
|
340
345
|
Run the Vitest suite (powered by jsdom) to exercise the DOM runtime and component support:
|
|
341
346
|
|
|
342
347
|
```sh
|