--- a/test/integration.js
+++ b/test/integration.js
@@ -19,16 +19,16 @@
   })
 
   it('should run as a node script with no arguments', function (done) {
-    testArgs('node bin.js', [], done)
+    testArgs('nodejs bin.js', [], done)
   })
 
   it('should run as a node script with arguments', function (done) {
-    testArgs('node bin.js', [ 'x', 'y', 'z' ], done)
+    testArgs('nodejs bin.js', [ 'x', 'y', 'z' ], done)
   })
 
   describe('path returned by "which"', function () {
     it('should match the actual path to the script file', function (done) {
-      which('node', function (err, path) {
+      which('nodejs', function (err, path) {
         if (err) return done(err)
         testArgs(path.replace('Program Files (x86)', 'Progra~2')
                      .replace('Program Files', 'Progra~1') + ' bin.js', [], done)
@@ -36,7 +36,7 @@
     })
 
     it('should match the actual path to the script file, with arguments', function (done) {
-      which('node', function (err, path) {
+      which('nodejs', function (err, path) {
         if (err) return done(err)
         testArgs(path.replace('Program Files (x86)', 'Progra~2')
                      .replace('Program Files', 'Progra~1') + ' bin.js', [ 'q', 'r' ], done)
--- a/test/fixtures/bin.js
+++ b/test/fixtures/bin.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
 var argv = require('../../index')
   .help('help')
   .completion()
--- a/test/fixtures/issue-497.js
+++ b/test/fixtures/issue-497.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
 
 // pretend we are a TTY
 process.stdout.isTTY = true
--- a/test/fixtures/normal-bin.js
+++ b/test/fixtures/normal-bin.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
 var argv = require('./yargs/index.js')
   .help('help')
   .version()
--- a/test/fixtures/opt-assignment-and-positional-command-arg.js
+++ b/test/fixtures/opt-assignment-and-positional-command-arg.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
 require('../../index')
   .option('foo', {
     nargs: 1
--- a/test/fixtures/symlink-bin.js
+++ b/test/fixtures/symlink-bin.js
@@ -1,4 +1,4 @@
-#!/usr/bin/env node
+#!/usr/bin/env nodejs
 var argv = require('./yargs-symlink/index.js')
   .help('help')
   .version()
