From 7fbc8f9eece171bb3929a07822ce138cae72ec75 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sat, 17 Mar 2018 13:20:34 +0330 Subject: [PATCH] try to prevent random ci fails --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 360184227a..ecbeaaf9eb 100644 --- a/package.json +++ b/package.json @@ -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",