summaryrefslogtreecommitdiff
path: root/cli/tests/testdata
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.d.ts1
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.js1
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/package.json5
-rw-r--r--cli/tests/testdata/npm/types_no_types_entry/main.out4
-rw-r--r--cli/tests/testdata/npm/types_no_types_entry/main.ts4
5 files changed, 15 insertions, 0 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.d.ts b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.d.ts
new file mode 100644
index 000000000..2341a14f0
--- /dev/null
+++ b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.d.ts
@@ -0,0 +1 @@
+export function getValue(): 5;
diff --git a/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.js b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.js
new file mode 100644
index 000000000..d0c5dbc70
--- /dev/null
+++ b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/dist/main.js
@@ -0,0 +1 @@
+module.exports.getValue = () => 5;
diff --git a/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/package.json b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/package.json
new file mode 100644
index 000000000..377af2bae
--- /dev/null
+++ b/cli/tests/testdata/npm/registry/@denotest/types-no-types-entry/1.0.0/package.json
@@ -0,0 +1,5 @@
+{
+ "name": "@denotest/types-no-types-entry",
+ "version": "1.0.0",
+ "main": "./dist/main.js"
+}
diff --git a/cli/tests/testdata/npm/types_no_types_entry/main.out b/cli/tests/testdata/npm/types_no_types_entry/main.out
new file mode 100644
index 000000000..6c5d45222
--- /dev/null
+++ b/cli/tests/testdata/npm/types_no_types_entry/main.out
@@ -0,0 +1,4 @@
+Download http://localhost:4545/npm/registry/@denotest/types-no-types-entry
+Download http://localhost:4545/npm/registry/@denotest/types-no-types-entry/1.0.0.tgz
+Check file://[WILDCARD]/types_no_types_entry/main.ts
+5
diff --git a/cli/tests/testdata/npm/types_no_types_entry/main.ts b/cli/tests/testdata/npm/types_no_types_entry/main.ts
new file mode 100644
index 000000000..15e060402
--- /dev/null
+++ b/cli/tests/testdata/npm/types_no_types_entry/main.ts
@@ -0,0 +1,4 @@
+import { getValue } from "npm:@denotest/types-no-types-entry";
+
+const result: 5 = getValue();
+console.log(result);