ci: try to fix appveyor tests

This commit is contained in:
Pooya Parsa 2018-01-13 09:03:59 +03:30
parent 29110694fb
commit f4fc8405a7
2 changed files with 11 additions and 11 deletions

View File

@ -22,7 +22,7 @@ test_script:
- npm --version
- yarn --version
# run tests
- yarn run test
- yarn test-appveyor
# Don't actually build.
build: off

View File

@ -1,7 +1,8 @@
{
"name": "nuxt",
"version": "1.1.0",
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
"description":
"A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
@ -19,10 +20,7 @@
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js"
},
"files": [
"bin",
"lib"
],
"files": ["bin", "lib"],
"keywords": [
"nuxt",
"nuxt.js",
@ -40,12 +38,13 @@
"nuxt": "./bin/nuxt"
},
"nyc": {
"include": [
"lib"
]
"include": ["lib"]
},
"scripts": {
"test": "npm run lint && nyc ava --verbose test/ -- && nyc report --reporter=html",
"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",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint --ext .js,.vue bin/* build/ lib/ test/ examples/",
"precommit": "npm run lint",
@ -149,6 +148,7 @@
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nuxtjs",
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
"logo":
"https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
}
}