Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / options / Makefile
1 ALL_TESTS = $(shell find test/ -name '*.test.js')
2
3 run-tests:
4         @./node_modules/.bin/mocha \
5                 -t 2000 \
6                 $(TESTFLAGS) \
7                 $(TESTS)
8
9 test:
10         @$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
11
12 .PHONY: test