mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
12 lines
203 B
Makefile
12 lines
203 B
Makefile
test: node-test browser-test
|
|
|
|
node-test:
|
|
@./node_modules/.bin/mocha
|
|
|
|
browser-test:
|
|
@./node_modules/.bin/mochify --wd -R spec
|
|
|
|
browser-manual-test:
|
|
node browser-test.js
|
|
|
|
.PHONY: node-test browser-test |