Skip to content

Commit

Permalink
also include weex tests in npm test
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Mar 8, 2017
1 parent 12870be commit 9d3ceba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions build/ci.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
set -e
npm run lint
npm run flow
npm run test:types
npm run test:cover
npm run test:e2e -- --env phantomjs
npm run test:ssr
npm run test:weex
npm test

# report coverage stats for non-PRs
if [[ -z $CI_PULL_REQUEST ]]; then
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build": "node build/build.js",
"build:ssr": "npm run build -- vue.runtime.common.js,vue-server-renderer",
"build:weex": "npm run build -- weex-vue-framework,weex-template-compiler",
"test": "npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr",
"test": "npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr && npm run test:weex",
"test:unit": "karma start build/karma.unit.config.js",
"test:cover": "karma start build/karma.cover.config.js",
"test:e2e": "npm run build -- vue.min.js && node test/e2e/runner.js",
Expand Down

0 comments on commit 9d3ceba

Please sign in to comment.