FIX travis tests

This commit is contained in:
salomonelli 2017-10-20 22:31:33 +02:00
parent 917926e34c
commit 734b9d34ad
2 changed files with 3 additions and 3 deletions

View File

@ -11,5 +11,6 @@ before_install:
script:
- npm i --silent
- npm run lint
- npm run test:travis
- npm run export
- npm run test:export
- npm run test:docs
- npm run test:e2e

View File

@ -22,7 +22,6 @@
"test:preview": "SCRIPT=preview npm run test:deleteFiles && npm run export && npm run preview && mocha test/scripts/preview.js",
"test:docs": "npm run docs && concurrently \"npm run docs:serve\" \"testcafe chromium test/\" --success first --kill-others --raw",
"test": "npm run test:export && npm run test:preview && npm run test:docs && npm run test:e2e",
"test:travis": "npm run test:export && npm run export && npm run test:preview && npm run test:docs && npm run test:e2e",
"export": "concurrently \"npm run dev\" \"npm run pdf\" --success first --kill-others --raw",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"
},