diff options
Diffstat (limited to 'tests/testdata/run/004_set_timeout.ts')
-rw-r--r-- | tests/testdata/run/004_set_timeout.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/testdata/run/004_set_timeout.ts b/tests/testdata/run/004_set_timeout.ts deleted file mode 100644 index 214b25086..000000000 --- a/tests/testdata/run/004_set_timeout.ts +++ /dev/null @@ -1,11 +0,0 @@ -setTimeout(() => { - console.log("World"); -}, 10); - -console.log("Hello"); - -const id = setTimeout(() => { - console.log("Not printed"); -}, 10000); - -clearTimeout(id); |