appveyor: powershell experiment

This commit is contained in:
JP Richardson 2015-06-17 07:11:03 -05:00
parent 3304feb1bb
commit 2d7aeec0f4
2 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,7 @@ test_script:
- node --version
- npm --version
# run tests
- npm test
- npm test-windows
# Don't actually build.
build: off

View File

@ -49,6 +49,7 @@
"scripts": {
"coverage": "istanbul cover ./node_modules/.bin/_mocha --recursive -- --reporter list",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",
"test": "standard && mocha test"
"test": "standard && mocha test",
"test-windows": "Get-ChildItem -Path .\test\ -Filter *.test.js -Recurse | %{mocha $_}"
}
}