diff --git a/.travis.yml b/.travis.yml index 1434381..6a2977d 100755 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/package.json b/package.json index a1e7dbb..6904585 100755 --- a/package.json +++ b/package.json @@ -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" },