docparse-dumpinvoices
Version:
takes a list of couchdb invoice ids and exports the data contained within those invoices to an Excel spreadsheet
14 lines (12 loc) • 385 B
Plain Text
mocha=node_modules/.bin/mocha
reporter?=spec
flags=--reporter $(reporter)
test: unit
unit:
$(mocha) $(shell find test -maxdepth 1 -name "*test.js") $(flags)
stream:
$(mocha) test/stream-test.js $(flags)
is-late-payment-charge-cost:
$(mocha) test/is-late-payment-charge-cost-test.js $(flags)
is-late-payment-credit-cost:
$(mocha) test/is-late-payment-credit-cost-test.js $(flags)