summaryrefslogtreecommitdiff
path: root/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0')
-rw-r--r--tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.jsx5
-rw-r--r--tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.tsx5
-rw-r--r--tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts7
3 files changed, 0 insertions, 17 deletions
diff --git a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.jsx b/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.jsx
deleted file mode 100644
index ae310a74e..000000000
--- a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.jsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { renderToString } from "npm:preact-render-to-string";
-
-export default function render() {
- return renderToString(<div>foo.jsx</div>);
-}
diff --git a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.tsx b/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.tsx
deleted file mode 100644
index 021c2d49e..000000000
--- a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/foo.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { renderToString } from "npm:preact-render-to-string";
-
-export default function render() {
- return renderToString(<div>foo.tsx</div>);
-}
diff --git a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts b/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts
deleted file mode 100644
index 05c549f64..000000000
--- a/tests/testdata/jsr/registry/@denotest/jsx-with-no-pragmas/1.0.0/mod.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import renderJsx from "./foo.jsx";
-import renderTsx from "./foo.tsx";
-
-export function render() {
- console.log(renderJsx());
- console.log(renderTsx());
-}