summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/lock_only_http_and_https/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/lock_only_http_and_https/main.ts')
-rw-r--r--cli/tests/testdata/run/lock_only_http_and_https/main.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/run/lock_only_http_and_https/main.ts b/cli/tests/testdata/run/lock_only_http_and_https/main.ts
new file mode 100644
index 000000000..879e825ed
--- /dev/null
+++ b/cli/tests/testdata/run/lock_only_http_and_https/main.ts
@@ -0,0 +1,6 @@
+import "http://127.0.0.1:4545/run/003_relative_import.ts";
+import { a } from "data:application/typescript;base64,ZW51bSBBIHsKICBBLAogIEIsCiAgQywKIH0KIAogZXhwb3J0IGZ1bmN0aW9uIGEoKSB7CiAgIHRocm93IG5ldyBFcnJvcihgSGVsbG8gJHtBLkN9YCk7CiB9CiA=";
+import { b } from "./b.ts";
+
+console.log(a);
+console.log(b);