summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/npm_tests.rs2
-rw-r--r--cli/tests/testdata/npm/create_require/main.out6
-rw-r--r--cli/tests/testdata/npm/registry/@denotest/create-require/1.0.0/index.js14
3 files changed, 21 insertions, 1 deletions
diff --git a/cli/tests/npm_tests.rs b/cli/tests/npm_tests.rs
index 99f11ba28..c845f8f4a 100644
--- a/cli/tests/npm_tests.rs
+++ b/cli/tests/npm_tests.rs
@@ -1516,7 +1516,7 @@ mod npm {
});
itest!(create_require {
- args: "run --reload npm/create_require/main.ts",
+ args: "run --reload --allow-read npm/create_require/main.ts",
output: "npm/create_require/main.out",
exit_code: 0,
envs: env_vars_for_npm_tests(),
diff --git a/cli/tests/testdata/npm/create_require/main.out b/cli/tests/testdata/npm/create_require/main.out
index ebd96c120..70b0415b3 100644
--- a/cli/tests/testdata/npm/create_require/main.out
+++ b/cli/tests/testdata/npm/create_require/main.out
@@ -1,6 +1,12 @@
[WILDCARD]
function
function
+function
+function
+function
+function
The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received https://example.com/
The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received https://example.com/
The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received 1
+The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received foo
+The argument 'filename' must be a file URL object, file URL string, or absolute path string. Received ./foo
diff --git a/cli/tests/testdata/npm/registry/@denotest/create-require/1.0.0/index.js b/cli/tests/testdata/npm/registry/@denotest/create-require/1.0.0/index.js
index eaa3e5afd..2ab564366 100644
--- a/cli/tests/testdata/npm/registry/@denotest/create-require/1.0.0/index.js
+++ b/cli/tests/testdata/npm/registry/@denotest/create-require/1.0.0/index.js
@@ -2,6 +2,10 @@ import { createRequire } from "module";
console.log(typeof createRequire(import.meta.url));
console.log(typeof createRequire(new URL(import.meta.url)));
+console.log(typeof createRequire("/"));
+console.log(typeof createRequire("/foo"));
+console.log(typeof createRequire("/foo/"));
+console.log(typeof createRequire("c:\\foo"));
try {
createRequire("https://example.com/");
} catch (e) {
@@ -17,3 +21,13 @@ try {
} catch (e) {
console.log(e.message);
}
+try {
+ createRequire("foo");
+} catch (e) {
+ console.log(e.message);
+}
+try {
+ createRequire("./foo");
+} catch (e) {
+ console.log(e.message);
+}