]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blob - example/iot-gateway/node_modules/engine.io-parser/Makefile
Updated to use the latest TI 15.4-Stack v2.1.0 from the SimpleLink CC13x0 SDK v1.30.
[apps/tidep0084.git] / example / iot-gateway / node_modules / engine.io-parser / Makefile
2 REPORTER = dot
4 test:
5         @if [ "x$(BROWSER_NAME)" = "x" ]; then make test-node; else make test-zuul; fi
7 test-node:
8         @./node_modules/.bin/mocha \
9                 --reporter $(REPORTER) \
10                 test/index.js
12 test-zuul:
13         @if [ "x$(BROWSER_PLATFORM)" = "x" ]; then \
14                 ./node_modules/zuul/bin/zuul \
15                 --browser-name $(BROWSER_NAME) \
16                 --browser-version $(BROWSER_VERSION) \
17                 test/index.js; \
18                 else \
19                 ./node_modules/zuul/bin/zuul \
20                 --browser-name $(BROWSER_NAME) \
21                 --browser-version $(BROWSER_VERSION) \
22                 --browser-platform "$(BROWSER_PLATFORM)" \
23                 test/index.js; \
24         fi
26 .PHONY: test