diff options
Diffstat (limited to 'testdata')
| -rw-r--r-- | testdata/006_url_imports.ts | 3 | ||||
| -rw-r--r-- | testdata/006_url_imports.ts.out | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/testdata/006_url_imports.ts b/testdata/006_url_imports.ts new file mode 100644 index 000000000..57af683cf --- /dev/null +++ b/testdata/006_url_imports.ts @@ -0,0 +1,3 @@ +import { printHello } from "http://localhost:4545/testdata/subdir/print_hello.ts"; +printHello(); +console.log("success"); diff --git a/testdata/006_url_imports.ts.out b/testdata/006_url_imports.ts.out new file mode 100644 index 000000000..989ce33e9 --- /dev/null +++ b/testdata/006_url_imports.ts.out @@ -0,0 +1,2 @@ +Hello +success |
