summaryrefslogtreecommitdiff
path: root/tests/specs/npm/denotest2_scope/main.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-05-03 01:00:38 +0100
committerGitHub <noreply@github.com>2024-05-03 00:00:38 +0000
commitcf0579c7d4b69fcb205fb0d5320e0a00012720ee (patch)
tree114fe9f5a83aa17b01374de39364cfdf176db147 /tests/specs/npm/denotest2_scope/main.js
parent1b27b5839624ebf9fef65cea28a17281f3b79a74 (diff)
test: npm registry handles two test scopes (#23663)
This commit updates our testing npm registry to handle additional `@denotest2` scope in addition to `@denotest` scope. I might have to update it further in the future to handle additional scopes, but it's good enough for now.
Diffstat (limited to 'tests/specs/npm/denotest2_scope/main.js')
-rw-r--r--tests/specs/npm/denotest2_scope/main.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/npm/denotest2_scope/main.js b/tests/specs/npm/denotest2_scope/main.js
new file mode 100644
index 000000000..dba8187a8
--- /dev/null
+++ b/tests/specs/npm/denotest2_scope/main.js
@@ -0,0 +1,3 @@
+import * as test from "npm:@denotest2/basic";
+
+console.log(test.getValue());