diff options
Diffstat (limited to 'cli/tests/testdata/vendor/dynamic_non_existent.ts')
-rw-r--r-- | cli/tests/testdata/vendor/dynamic_non_existent.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tests/testdata/vendor/dynamic_non_existent.ts b/cli/tests/testdata/vendor/dynamic_non_existent.ts deleted file mode 100644 index a48e2accb..000000000 --- a/cli/tests/testdata/vendor/dynamic_non_existent.ts +++ /dev/null @@ -1,11 +0,0 @@ -// this should still vendor -// deno-lint-ignore no-constant-condition -if (false) { - await import("./non-existent.js"); -} - -export class Logger { - log(text: string) { - console.log(text); - } -} |