From 05e3da6e51d0be7447646001467b29f3a99a2f1e Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 19 Mar 2018 04:37:47 +0330 Subject: [PATCH] fix build scripts --- appveyor.yml | 4 ++-- package.json | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index bab4179e71..9ce63a4e85 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,10 +19,10 @@ install: test_script: # Output useful info for debugging. - node --version - - npm --version + # - npm --version - yarn --version # run tests - - yarn test-appveyor + - yarn test # Don't actually build. build: off diff --git a/package.json b/package.json index b88ffdd56e..cbc448e899 100644 --- a/package.json +++ b/package.json @@ -42,8 +42,7 @@ }, "scripts": { "build-fixtures": "node ./scripts/build-fixtures", - "test": "npm run lint && npm run build-fixtures && jest", - "test-appveyor": "yarn test", + "test": "npm run lint && npm run build-fixtures && jest test/", "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "lint": "eslint --ext .js,.mjs,.vue bin/* build/ lib/ test/ examples/", "precommit": "npm run lint",