diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-01-09 17:44:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 17:44:36 +0100 |
commit | bd53567acf7d7bb28e51c0137054c5a9d9e19bf1 (patch) | |
tree | a0f851eaef0c6164b847d75b44cfb26a676a9e53 /cli/tests/testdata/inspector/inspector3.js | |
parent | 1fb5858009f598ce3f917f9f49c466db81f4d9b0 (diff) |
test: add inspector test with ts files (#13312)
Diffstat (limited to 'cli/tests/testdata/inspector/inspector3.js')
-rw-r--r-- | cli/tests/testdata/inspector/inspector3.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/testdata/inspector/inspector3.js b/cli/tests/testdata/inspector/inspector3.js new file mode 100644 index 000000000..b1b00b5a0 --- /dev/null +++ b/cli/tests/testdata/inspector/inspector3.js @@ -0,0 +1,7 @@ +// deno-lint-ignore-file +for (let i = 0; i < 128; i++) { + console.log(i); + debugger; +} +await new Promise((res, _) => setTimeout(res, 100)); +console.log("done"); |