mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Merge pull request #3067 from chrisgarrity/update-makefile
update makefile for new tap
This commit is contained in:
commit
d93df78065
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