aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/express/Makefile
diff options
context:
space:
mode:
authorTeddy Wing2013-04-27 19:25:40 -0400
committerTeddy Wing2013-04-27 19:25:56 -0400
commit512e8b2da71de59132a29e80d7359ac843d62f07 (patch)
tree3f5024a4f75072eda45713dcd429a0b58bf969b9 /node_modules/express/Makefile
parent4b14305623d5ddc59f435fc5e35c54c0def1d392 (diff)
downloadWho-am-I-512e8b2da71de59132a29e80d7359ac843d62f07.tar.bz2
Untrack ./node_modules
Sorry, my bad for not ignoring it initially.
Diffstat (limited to 'node_modules/express/Makefile')
-rw-r--r--node_modules/express/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/node_modules/express/Makefile b/node_modules/express/Makefile
deleted file mode 100644
index 228f299..0000000
--- a/node_modules/express/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-
-MOCHA_OPTS= --check-leaks
-REPORTER = dot
-
-check: test
-
-test: test-unit test-acceptance
-
-test-unit:
- @NODE_ENV=test ./node_modules/.bin/mocha \
- --reporter $(REPORTER) \
- $(MOCHA_OPTS)
-
-test-acceptance:
- @NODE_ENV=test ./node_modules/.bin/mocha \
- --reporter $(REPORTER) \
- --bail \
- test/acceptance/*.js
-
-test-cov: lib-cov
- @EXPRESS_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
-
-lib-cov:
- @jscoverage lib lib-cov
-
-benchmark:
- @./support/bench
-
-clean:
- rm -f coverage.html
- rm -fr lib-cov
-
-.PHONY: test test-unit test-acceptance benchmark clean