From 2d7aeec0f4e05c3a67d1712d966554fde84ce0cd Mon Sep 17 00:00:00 2001 From: JP Richardson Date: Wed, 17 Jun 2015 07:11:03 -0500 Subject: [PATCH] appveyor: powershell experiment --- appveyor.yml | 2 +- package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 $_}" } }