summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/inspector/memory.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/inspector/memory.js')
-rw-r--r--cli/tests/testdata/inspector/memory.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/cli/tests/testdata/inspector/memory.js b/cli/tests/testdata/inspector/memory.js
deleted file mode 100644
index 082d6367c..000000000
--- a/cli/tests/testdata/inspector/memory.js
+++ /dev/null
@@ -1,13 +0,0 @@
-const objs = [];
-
-class Foo {
- foo() {
- return "foo";
- }
-}
-
-setInterval(() => {
- objs.push(new Foo());
-}, 1000);
-
-console.log("hello!");