diff --git a/appveyor.yml b/appveyor.yml index 7ccfdbd..2022e4e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,7 @@ test_script: - node --version - npm --version # run tests - - npm test + - npm test-windows # Don't actually build. build: off diff --git a/package.json b/package.json index 8604a29..d6c2b76 100644 --- a/package.json +++ b/package.json @@ -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 $_}" } }