Update npm test to run unit tests

This commit is contained in:
Josh Lory 2017-08-09 18:50:54 -07:00
parent e3e1668127
commit d329412507

View File

@ -17,7 +17,8 @@
"prepublish": "npm run build", "prepublish": "npm run build",
"prepublish-watch": "npm run watch", "prepublish-watch": "npm run watch",
"start": "webpack-dev-server", "start": "webpack-dev-server",
"test": "npm run lint && npm run docs", "tap": "./node_modules/.bin/tap ./test/unit/*.js",
"test": "npm run lint && npm run docs && npm run tap",
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"", "version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"",
"watch": "webpack --progress --colors --watch --watch-poll" "watch": "webpack --progress --colors --watch --watch-poll"
}, },