summaryrefslogtreecommitdiff
path: root/tests/010_set_interval.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2018-08-17 00:28:02 +0900
committerRyan Dahl <ry@tinyclouds.org>2018-08-17 12:43:21 -0400
commit565a21eb0eee61048f6f770bfb24a03131fbc958 (patch)
treeb27ab704ef8ed6b77a74b62d8697588ad8f862b9 /tests/010_set_interval.ts
parent87a061785e7ac795b9b3ef262d382dbfe6887eda (diff)
chore: format files in tests/
Diffstat (limited to 'tests/010_set_interval.ts')
-rw-r--r--tests/010_set_interval.ts6
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);