UNPKG
expirable
Version:
latest (0.1.0)
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Expirable cache
expirable
/
Makefile
15 lines
(12 loc)
•
254 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# configuration for the test suite
ALL_TESTS =
$(
shell
find tests/ -name '*.test.js')
REPORTER = spec UI = exports
test:
@./node_modules/.bin/mocha \ --reporter
$(REPORTER)
\ --timeout 4000 \ --ui
$(UI)
\ --growl \
$(ALL_TESTS)
.PHONY
: test