diff options
Diffstat (limited to 'tests/testdata/run/import_data_url_import_relative.ts')
-rw-r--r-- | tests/testdata/run/import_data_url_import_relative.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testdata/run/import_data_url_import_relative.ts b/tests/testdata/run/import_data_url_import_relative.ts new file mode 100644 index 000000000..23947fe60 --- /dev/null +++ b/tests/testdata/run/import_data_url_import_relative.ts @@ -0,0 +1,4 @@ +// export { a } from "./a.ts"; +import * as a from "data:application/javascript;base64,ZXhwb3J0IHsgYSB9IGZyb20gIi4vYS50cyI7Cg=="; + +console.log(a); |