diff options
Diffstat (limited to 'tests/testdata/inspector/test.ts')
-rw-r--r-- | tests/testdata/inspector/test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/testdata/inspector/test.ts b/tests/testdata/inspector/test.ts new file mode 100644 index 000000000..2b33f22e5 --- /dev/null +++ b/tests/testdata/inspector/test.ts @@ -0,0 +1,5 @@ +import { foo } from "./foo.ts"; +import { bar } from "./bar.js"; + +console.log(foo()); +console.log(bar()); |