docparse-api
Version:
api server for the docparse project
40 lines (28 loc) • 1.42 kB
Plain Text
spinup:
mocha $(shell find test -name "*spinup-test.js") --test --reporter spec
scraper:
mocha $(shell find test -name "*scraper-test.js") --test --reporter spec
scraper_check:
mocha $(shell find test -name "*check-scraper-test.js") --test --reporter spec
scraper-logins:
mocha $(shell find test -name "*logins-scraper-test.js") --test --reporter spec
scraper-existing:
mocha $(shell find test -name "*existing-scraper-test.js") --test --reporter spec
nge-scraper:
node_modules/.bin/mocha $(shell find test -name "*nge-add-test.js") --test --reporter spec
hes-scraper:
node_modules/.bin/mocha $(shell find test -name "*hes-add-test.js") --test --reporter spec
nst-scraper:
node_modules/.bin/mocha $(shell find test -name "*nst-add-test.js") --test --reporter spec
upload-create:
mocha $(shell find test -name "*create-upload-test.js") --test --reporter spec
upload-fetch:
mocha $(shell find test -name "*fetch-upload-test.js") --test --reporter spec
upload-remove:
mocha $(shell find test -name "*remove-upload-test.js") --test --reporter spec
upload-parse:
mocha $(shell find test -name "parse-upload-test.js") --test --reporter spec
invoice-export:
mocha $(shell find test -name "*export-invoice-test.js") --test --reporter spec
test: scraper scraper-check scraper-logins scraper-existing hes-scraper nst-scraper upload-create upload-fetch upload-remove upload-parse invoice-export