Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / socket.io-client / Makefile
1
2 ALL_TESTS = $(shell find test/ -name '*.test.js')
3
4 run-tests:
5         @./node_modules/.bin/expresso \
6                 -I lib \
7                 -I support \
8                 --serial \
9                 $(TESTS)
10
11 test:
12         @$(MAKE) TESTS="$(ALL_TESTS)" run-tests
13
14 test-acceptance:
15         @node support/test-runner/app $(TRANSPORT)
16
17 build:
18         @node ./bin/builder.js
19
20 .PHONY: test