try to prevent random ci fails

This commit is contained in:
Pooya Parsa 2018-03-17 13:20:34 +03:30
parent fe7fdc8b56
commit 7fbc8f9eec
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@
]
},
"scripts": {
"test": "npm run lint && nyc ava --verbose test/ -- && nyc report --reporter=html",
"test-appveyor": "npm run lint && nyc ava --serial test/ -- && nyc report --reporter=html",
"test": "npm run lint && nyc ava --fail-fast -v -s -T 30000 test/ -- && nyc report --reporter=html",
"test-appveyor": "yarn test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint --ext .js,.vue bin/* build/ lib/ test/ examples/",
"precommit": "npm run lint",