summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/node-gyp/test/test-find-node-directory.js')
-rw-r--r--deps/npm/node_modules/node-gyp/test/test-find-node-directory.js42
1 files changed, 22 insertions, 20 deletions
diff --git a/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js b/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
index 46659d0cfe..767b6f6b37 100644
--- a/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
+++ b/deps/npm/node_modules/node-gyp/test/test-find-node-directory.js
@@ -1,8 +1,10 @@
-var test = require('tape')
-var path = require('path')
-var findNodeDirectory = require('../lib/find-node-directory')
+'use strict'
-var platforms = ['darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix']
+const test = require('tap').test
+const path = require('path')
+const findNodeDirectory = require('../lib/find-node-directory')
+
+const platforms = [ 'darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix' ]
// we should find the directory based on the directory
// the script is running in and it should match the layout
@@ -11,10 +13,10 @@ var platforms = ['darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix']
test('test find-node-directory - node install', function (t) {
t.plan(platforms.length)
for (var next = 0; next < platforms.length; next++) {
- var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]}
+ var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
t.equal(
findNodeDirectory('/x/deps/npm/node_modules/node-gyp/lib', processObj),
- path.join('/x'))
+ path.join('/x'))
}
})
@@ -26,15 +28,15 @@ test('test find-node-directory - node install', function (t) {
test('test find-node-directory - node build', function (t) {
t.plan(platforms.length)
for (var next = 0; next < platforms.length; next++) {
- var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]}
+ var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
if (platforms[next] === 'win32') {
t.equal(
findNodeDirectory('/y/node_modules/npm/node_modules/node-gyp/lib',
- processObj), path.join('/y'))
+ processObj), path.join('/y'))
} else {
t.equal(
findNodeDirectory('/y/lib/node_modules/npm/node_modules/node-gyp/lib',
- processObj), path.join('/y'))
+ processObj), path.join('/y'))
}
}
})
@@ -44,7 +46,7 @@ test('test find-node-directory - node build', function (t) {
test('test find-node-directory - node in bin directory', function (t) {
t.plan(platforms.length)
for (var next = 0; next < platforms.length; next++) {
- var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]}
+ var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
t.equal(
findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
path.join('/x/y'))
@@ -58,15 +60,15 @@ test('test find-node-directory - node in build release dir', function (t) {
for (var next = 0; next < platforms.length; next++) {
var processObj
if (platforms[next] === 'win32') {
- processObj = {execPath: '/x/y/Release/node', platform: platforms[next]}
+ processObj = { execPath: '/x/y/Release/node', platform: platforms[next] }
} else {
- processObj = {execPath: '/x/y/out/Release/node',
- platform: platforms[next]}
+ processObj = { execPath: '/x/y/out/Release/node',
+ platform: platforms[next] }
}
t.equal(
findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
- path.join('/x/y'))
+ path.join('/x/y'))
}
})
@@ -77,14 +79,14 @@ test('test find-node-directory - node in Debug release dir', function (t) {
for (var next = 0; next < platforms.length; next++) {
var processObj
if (platforms[next] === 'win32') {
- processObj = {execPath: '/a/b/Debug/node', platform: platforms[next]}
+ processObj = { execPath: '/a/b/Debug/node', platform: platforms[next] }
} else {
- processObj = {execPath: '/a/b/out/Debug/node', platform: platforms[next]}
+ processObj = { execPath: '/a/b/out/Debug/node', platform: platforms[next] }
}
t.equal(
findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj),
- path.join('/a/b'))
+ path.join('/a/b'))
}
})
@@ -93,7 +95,7 @@ test('test find-node-directory - node in Debug release dir', function (t) {
test('test find-node-directory - not found', function (t) {
t.plan(platforms.length)
for (var next = 0; next < platforms.length; next++) {
- var processObj = {execPath: '/x/y/z/y', platform:next}
+ var processObj = { execPath: '/x/y/z/y', platform: next }
t.equal(findNodeDirectory('/a/b/c/d', processObj), '')
}
})
@@ -107,9 +109,9 @@ test('test find-node-directory - not found', function (t) {
test('test find-node-directory - node install', function (t) {
t.plan(platforms.length)
for (var next = 0; next < platforms.length; next++) {
- var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]}
+ var processObj = { execPath: '/x/y/bin/node', platform: platforms[next] }
t.equal(
findNodeDirectory('/x/y/z/a/b/c/deps/npm/node_modules/node-gyp/lib',
- processObj), path.join('/x/y/z/a/b/c'))
+ processObj), path.join('/x/y/z/a/b/c'))
}
})