aboutsummaryrefslogtreecommitdiff
path: root/node_modules/socket.io/Makefile
diff options
context:
space:
mode:
authorkumar <kumar.damani@mail.utoronto.ca>2016-07-24 03:33:02 +0000
committerkumar <kumar.damani@mail.utoronto.ca>2016-07-24 03:33:02 +0000
commit59cf16ee546111c186e36dc723a60de49cf25001 (patch)
tree7f65205035f5a4d4e6fe47c701097ebc6b2abe01 /node_modules/socket.io/Makefile
parentcbcf2f83d7a11895deeb1234504dd767d8826d4d (diff)
parent43f7514bb2ae00d3805f1468f89bbdab6fc595fa (diff)
pull
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
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