12 lines
149 B
Makefile
Raw Permalink Normal View History

2024-08-24 20:48:14 +02:00
# Install node modules.
node_modules: package.json
@npm install
# Run the tests.
test:
@./node_modules/.bin/mocha
# Phony targets.
.PHONY: test