summaryrefslogtreecommitdiff
path: root/cli/tests/inspector4.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-05-21 20:34:25 +0200
committerGitHub <noreply@github.com>2020-05-21 20:34:25 +0200
commit491feb859f30f56bc25d6afc730a1c709a0bb807 (patch)
treea5a51943d1654515d88412dafe0c459fcbd6c483 /cli/tests/inspector4.js
parent8d8a2f573f32e0b2680eb114739902c5953f7b99 (diff)
fix: --inspect flag working like --inspect-brk (#5697)
Diffstat (limited to 'cli/tests/inspector4.js')
-rw-r--r--cli/tests/inspector4.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/inspector4.js b/cli/tests/inspector4.js
new file mode 100644
index 000000000..1bf419650
--- /dev/null
+++ b/cli/tests/inspector4.js
@@ -0,0 +1,5 @@
+console.log("hello");
+
+setInterval(() => {
+ console.log("hello from interval");
+}, 1000);