diff options
Diffstat (limited to 'cli/tests/inspector4.js')
-rw-r--r-- | cli/tests/inspector4.js | 5 |
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); |