todo
Version:
Todos in the CLI like what.
78 lines (56 loc) • 815 B
Plain Text
#
# Paths
#
TEST_EXEC=node_modules/.bin/hydro
TEST_COV_EXEC=node_modules/.bin/istanbul
TEST_EXEC_BARE = node_modules/.bin/_hydro
#
# All
#
all: clean install test
#
# Install
#
install: node_modules
#
# Run all tests
#
test:
#
# Test runner for the CI server
#
test-ci: test
#
# Run the unit tests
#
test-unit:
#
# Run the acceptance tests
#
test-acceptance:
#
# Test coverage report
#
test-cov:
#
# Clean all
#
clean:
#
# Install node modules
#
node_modules:
#
# Instructions
#
.PHONY: test-acceptance test-cov test-unit test-ci test