Add yarn command to run tests in watch mode

This commit is contained in:
Patrick Smith 2018-11-20 11:09:09 -05:00
parent d5270fa97d
commit 9b60ac596f

View File

@ -6,7 +6,8 @@
"scripts": { "scripts": {
"watch": "parcel watch js/index.js -d static/assets --public-url /static/assets -o index.js --no-autoinstall", "watch": "parcel watch js/index.js -d static/assets --public-url /static/assets -o index.js --no-autoinstall",
"build": "parcel build js/index.js -d static/assets --public-url /static/assets -o index.js", "build": "parcel build js/index.js -d static/assets --public-url /static/assets -o index.js",
"test": "jest" "test": "jest",
"test:watch": "jest --watch"
}, },
"author": "", "author": "",
"license": "MIT", "license": "MIT",