Limit test suite to UI for now

This commit is contained in:
Dan Finlay 2016-04-14 15:10:12 -07:00
parent 08c126e88e
commit 702b7e86f2
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@
"private": true,
"scripts": {
"start": "gulp dev",
"test": "mocha --require test/helper.js --compilers js:babel-register --recursive",
"test": "npm run testUi",
"testPlugin": "mocha --require test/helper.js --compilers js:babel-register --recursive",
"watch": "mocha watch --compilers js:babel-register --recursive",
"testUi": "mocha ui/test/**/*test.js",
"watchUi": "mocha watch ui/test/**/*test.js"