diff options
Diffstat (limited to 'testdata/010_set_interval.ts')
-rw-r--r-- | testdata/010_set_interval.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/testdata/010_set_interval.ts b/testdata/010_set_interval.ts deleted file mode 100644 index e013d00bc..000000000 --- a/testdata/010_set_interval.ts +++ /dev/null @@ -1,7 +0,0 @@ -const id = setInterval(function() { - console.log("test") -}, 200); - -setTimeout(function() { - clearInterval(id) -}, 500) |