forked from telefonicaid/fiware-sth-comet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (17 loc) · 663 Bytes
/
Makefile
File metadata and controls
21 lines (17 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
REPORTER = list
MOCHA_OPTIONS = --ui tdd
test:
clear
echo STARTING TESTS ********************
./node_modules/mocha/bin/mocha --reporter $(REPORTER) $(MOCHA_OPTIONS) test/node/sth_app_test.js
echo TESTS ENDED ***********************
test-database:
clear
echo STARTING DATABASE TESTS ********************
./node_modules/mocha/bin/mocha --reporter $(REPORTER) $(MOCHA_OPTIONS) test/node/sthDatabase_test.js
echo TESTS DATABASE ENDED ***********************
test-watch:
clear
echo STARTING TESTS ********************
./node_modules/mocha/bin/mocha --reporter $(REPORTER) --growl --watch $(MOCHA_OPTIONS) test/*.js
.PHONY: test test-database test-watch