diff options
Diffstat (limited to 'test/fixtures/inspector-cli/alive.js')
-rw-r--r-- | test/fixtures/inspector-cli/alive.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/fixtures/inspector-cli/alive.js b/test/fixtures/inspector-cli/alive.js new file mode 100644 index 0000000000..c8ad157b45 --- /dev/null +++ b/test/fixtures/inspector-cli/alive.js @@ -0,0 +1,5 @@ +let x = 0; +function heartbeat() { + ++x; +} +setInterval(heartbeat, 50); |