diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-08-17 00:28:02 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-17 12:43:21 -0400 |
commit | 565a21eb0eee61048f6f770bfb24a03131fbc958 (patch) | |
tree | b27ab704ef8ed6b77a74b62d8697588ad8f862b9 /tests/010_set_interval.ts | |
parent | 87a061785e7ac795b9b3ef262d382dbfe6887eda (diff) |
chore: format files in tests/
Diffstat (limited to 'tests/010_set_interval.ts')
-rw-r--r-- | tests/010_set_interval.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/010_set_interval.ts b/tests/010_set_interval.ts index e013d00bc..f58cc3fcd 100644 --- a/tests/010_set_interval.ts +++ b/tests/010_set_interval.ts @@ -1,7 +1,7 @@ const id = setInterval(function() { - console.log("test") + console.log("test"); }, 200); setTimeout(function() { - clearInterval(id) -}, 500) + clearInterval(id); +}, 500); |