Merge pull request #636 from murgatroid99/node_mocha_fix

Explicitly use nodejs to run tests
pull/643/head
donnadionne 10 years ago
commit 6044f2fd71
  1. 4
      src/node/package.json

@ -3,8 +3,8 @@
"version": "0.2.0", "version": "0.2.0",
"description": "gRPC Library for Node", "description": "gRPC Library for Node",
"scripts": { "scripts": {
"lint": "jshint src test examples interop index.js", "lint": "nodejs ./node_modules/jshint/bin/jshint src test examples interop index.js",
"test": "./node_modules/mocha/bin/mocha && npm run-script lint" "test": "nodejs ./node_modules/mocha/bin/mocha && npm run-script lint"
}, },
"dependencies": { "dependencies": {
"bindings": "^1.2.1", "bindings": "^1.2.1",

Loading…
Cancel
Save