mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-07-14 11:40:10 +00:00
13 lines
219 B
Makefile
13 lines
219 B
Makefile
.PHONY: test
|
|
|
|
MOCHA=./node_modules/.bin/mocha --compilers coffee:coffee-script/register
|
|
|
|
TESTS=test/*
|
|
|
|
test:
|
|
@BLUEBIRD_DEBUG=1 \
|
|
$(MOCHA) -R spec $(TESTS) --bail
|
|
|
|
watch:
|
|
$(MOCHA) -R spec $(TESTS) --bail --watch
|