mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
This test executes a simple debug session over the inspector protocol. PR-URL: https://github.com/nodejs/node/pull/8429 Reviewed-By: ofrobots - Ali Ijaz Sheikh <ofrobots@google.com>
11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
var t = 1;
|
|
var k = 1;
|
|
console.log('A message', 5);
|
|
while (t > 0) {
|
|
if (t++ === 1000) {
|
|
t = 0;
|
|
console.log('Outputed message #' + k++);
|
|
}
|
|
}
|
|
process.exit(55);
|