node-postgres/Makefile

23 lines
618 B
Makefile
Raw Normal View History

SHELL := /bin/bash
user=postgres
password=1234
host=localhost
port=5432
database=postgres
verbose=false
test-connection:
@node script/test-connection.js -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose)
test-unit:
@find test/unit -name "*-tests.js" | xargs -n 1 -I file node file --verbose $(verbose)
test-integration: test-connection
@find test/integration -name "*-tests.js" | xargs -n 1 -I file node file -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose)
test-all: test-unit test-integration
test: test-unit
.PHONY : test