summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/fixtures/loop.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/node_compat/test/fixtures/loop.js')
-rw-r--r--cli/tests/node_compat/test/fixtures/loop.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/node_compat/test/fixtures/loop.js b/cli/tests/node_compat/test/fixtures/loop.js
deleted file mode 100644
index f9bcfc66e..000000000
--- a/cli/tests/node_compat/test/fixtures/loop.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// deno-fmt-ignore-file
-// deno-lint-ignore-file
-
-// Copyright Joyent and Node contributors. All rights reserved. MIT license.
-// Taken from Node 18.12.1
-// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually.
-
-var t = 1;
-var k = 1;
-console.log('A message', 5);
-while (t > 0) {
- if (t++ === 1000) {
- t = 0;
- console.log(`Outputted message #${k++}`);
- }
-}
-process.exit(55);