- Introduced sqlstring module for SQL escape and formatting. - Added supports-color module to detect terminal color support. - Created dashboard and login views with Bootstrap styling. - Implemented user schema in SQL with mock data for testing.
9 lines
154 B
Makefile
9 lines
154 B
Makefile
TESTS = test/*.js
|
|
REPORTER = spec
|
|
TIMEOUT = 5000
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
|
|
|
|
.PHONY: test |