12 lines
169 B
Makefile
12 lines
169 B
Makefile
|
|
test: security
|
|
@node test/ --integration $(TESTS)
|
|
|
|
test-unit: security
|
|
@node test/ $(TESTS)
|
|
|
|
security:
|
|
@node_modules/.bin/nsp check
|
|
|
|
.PHONY: test test-unit security
|