bcs.client
Version:
Read-through cached API client for the BCS-460/462 series of brewery automation controllers
16 lines (12 loc) • 305 B
Plain Text
#
# makefile
# BCS.client
#
# Created by Carson S. Christian on 2012-11-26.
#
test-device:
./node_modules/.bin/mocha --reporter spec ./test/device.js
test-cache:
./node_modules/.bin/mocha --slow 5000 --reporter spec ./test/cache.js
test: test-device test-cache
.PHONY: test-device test-cache