aboutsummaryrefslogtreecommitdiff
path: root/node_modules/socket.io/Makefile
diff options
context:
space:
mode:
authorHumairAK <humair88@hotmail.com>2016-09-18 21:02:07 +0000
committerHumairAK <humair88@hotmail.com>2016-09-18 21:02:07 +0000
commit541341598d5ed0e5c8ef9b2325dc6bbec958463a (patch)
tree2b52efc8b69bd787e16cc523b12d2a54caabd405 /node_modules/socket.io/Makefile
parentd181c175009ef9b3523f025a28c678ae83be024e (diff)
parent535d6cfc7a66f174e6f9c656766bee9c15964c48 (diff)
Merged conflict
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