Browse Source

Remvoe --watch flag from `npm run test`

Konstantin Tarkus 9 years ago
parent
commit
0785807034
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package.json

+ 1 - 1
package.json

@@ -43,7 +43,7 @@
   },
   "scripts": {
     "lint": "eslint src tools test",
-    "test": "mocha --compilers js:babel/register --watch",
+    "test": "mocha --compilers js:babel/register",
     "clean": "babel-node --eval \"require('./tools/clean')().catch(err => console.log(err.stack))\"",
     "build": "babel-node --eval \"require('./tools/build')().catch(err => console.log(err.stack))\"",
     "start": "babel-node --eval \"require('./tools/start')().catch(err => console.log(err.stack))\"",