diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2022-02-03 06:48:54 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-03 06:48:54 +1100 |
| commit | de5a4a1757d1f816c594cb0fe7426a5c738f0abb (patch) | |
| tree | 8fccc077b9677d2fb6f4a7259561e0050946a5f0 /cli/tests/testdata | |
| parent | 975e55d524d76acd7b36b2a058661810c5ed4a53 (diff) | |
fix(cli): handle local files with query params on emit (#13568)
Fixes #13562
Diffstat (limited to 'cli/tests/testdata')
| -rw-r--r-- | cli/tests/testdata/issue13562.ts | 3 | ||||
| -rw-r--r-- | cli/tests/testdata/issue13562.ts.out | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/issue13562.ts b/cli/tests/testdata/issue13562.ts new file mode 100644 index 000000000..9f3134aef --- /dev/null +++ b/cli/tests/testdata/issue13562.ts @@ -0,0 +1,3 @@ +import { printHello3 } from "./subdir/mod1.ts?q=.json"; + +printHello3(); diff --git a/cli/tests/testdata/issue13562.ts.out b/cli/tests/testdata/issue13562.ts.out new file mode 100644 index 000000000..699b756ed --- /dev/null +++ b/cli/tests/testdata/issue13562.ts.out @@ -0,0 +1,2 @@ +[WILDCARD] +Hello |
