aboutsummaryrefslogtreecommitdiff
path: root/node_modules/socket.io/Makefile
diff options
context:
space:
mode:
authornanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-24 03:10:00 +0000
committernanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-24 03:10:00 +0000
commit64d9ccb6ae21a12d6fbd61b371397d8d5f2e783f (patch)
tree9ec795adc8b41cd9cf159d8e2e74aed0cf932e8d /node_modules/socket.io/Makefile
parent39afbefe2ea5b7a105c352049a4a4a171502e880 (diff)
need pull
Diffstat (limited to 'node_modules/socket.io/Makefile')
-rw-r--r--node_modules/socket.io/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/node_modules/socket.io/Makefile b/node_modules/socket.io/Makefile
new file mode 100644
index 0000000..4acf1e5
--- /dev/null
+++ b/node_modules/socket.io/Makefile
@@ -0,0 +1,15 @@
+
+REPORTER = dot
+
+test:
+ @./node_modules/.bin/mocha \
+ --reporter $(REPORTER) \
+ --slow 200ms \
+ --bail
+
+test-cov:
+ @./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
+ --reporter $(REPORTER) \
+ test/
+
+.PHONY: test