mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
update makefile for new tap
Add options anywhere we run tap to make it work as it did previously
This commit is contained in:
parent
edffa47f65
commit
d903fbe6bf
1 changed files with 7 additions and 10 deletions
17
Makefile
17
Makefile
|
@ -71,28 +71,25 @@ lint:
|
|||
$(ESLINT) . --ext .js,.jsx,.json
|
||||
|
||||
unit:
|
||||
$(TAP) ./test/unit/*.js
|
||||
|
||||
functional:
|
||||
$(TAP) ./test/functional/*.js
|
||||
$(TAP) ./test/unit/*.js --no-coverage -R classic
|
||||
|
||||
integration:
|
||||
$(TAP) ./test/integration/*.js
|
||||
$(TAP) ./test/integration/*.js --no-coverage -R classic
|
||||
|
||||
smoke:
|
||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600
|
||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 --no-coverage -R classic
|
||||
|
||||
smoke-verbose:
|
||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec
|
||||
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec --no-coverage -R classic
|
||||
|
||||
localization:
|
||||
$(TAP) ./test/localization/*.js
|
||||
$(TAP) ./test/localization/*.js --no-coverage -R classic
|
||||
|
||||
tap:
|
||||
$(TAP) ./test/{unit,functional,localization}/*.js
|
||||
$(TAP) ./test/{unit,localization}/*.js --no-coverage -R classic
|
||||
|
||||
coverage:
|
||||
$(TAP) ./test/{unit,functional,localization}/*.js --coverage --coverage-report=lcov
|
||||
$(TAP) ./test/{unit,localization}/*.js --coverage --coverage-report=lcov
|
||||
|
||||
# ------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue