1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

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

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"