summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-24 10:12:35 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-24 10:25:25 -0400
commitb98f9f1efe6521645615146555004915ef6ecc8e (patch)
tree34bfac8d945af6d15921a78ea605c19fbbea5baf /Makefile
parent8d1497a40896429191ca864a2da035fcddf286bc (diff)
Replace Node test runner with golang one.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1a31e3c08..204adccf9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,6 @@ TS_FILES = \
msg.pb.js \
os.ts \
runtime.ts \
- test.js \
timers.ts \
tsconfig.json \
types.ts \
@@ -69,7 +68,6 @@ fmt: node_modules
clang-format msg.proto -i
test: deno
- node test.js
- go test
+ go test -v
.PHONY: test lint clean distclean