@@ -9,6 +9,9 @@ const globalPrefix = join(cwd, 'global')
9
9
const localPrefix = join ( cwd , 'local' )
10
10
const NODE = execPath
11
11
12
+ const npmPath = '{path}'
13
+ const npmBin = join ( npmPath , 'bin/npm-cli.js' )
14
+
12
15
const mockDefinitions = ( t ) => {
13
16
mockGlobals ( t , { 'process.env' : { EDITOR : 'vim' } } )
14
17
const { definitions, defaults } = t . mock ( '../lib/definitions/index.js' )
@@ -24,7 +27,7 @@ t.test('set envs that are not defaults and not already in env', t => {
24
27
INIT_CWD : cwd ,
25
28
EDITOR : 'vim' ,
26
29
HOME : undefined ,
27
- npm_execpath : require . main . filename ,
30
+ npm_execpath : npmBin ,
28
31
npm_node_execpath : execPath ,
29
32
npm_config_global_prefix : globalPrefix ,
30
33
npm_config_local_prefix : localPrefix ,
@@ -39,6 +42,8 @@ t.test('set envs that are not defaults and not already in env', t => {
39
42
execPath,
40
43
globalPrefix,
41
44
localPrefix,
45
+ npmPath,
46
+ npmBin,
42
47
}
43
48
44
49
setEnvs ( config )
@@ -75,7 +80,7 @@ t.test('set envs that are not defaults and not already in env, array style', t =
75
80
INIT_CWD : cwd ,
76
81
EDITOR : 'vim' ,
77
82
HOME : undefined ,
78
- npm_execpath : require . main . filename ,
83
+ npm_execpath : npmBin ,
79
84
npm_node_execpath : execPath ,
80
85
npm_config_global_prefix : globalPrefix ,
81
86
npm_config_local_prefix : localPrefix ,
@@ -90,6 +95,8 @@ t.test('set envs that are not defaults and not already in env, array style', t =
90
95
execPath,
91
96
globalPrefix,
92
97
localPrefix,
98
+ npmPath,
99
+ npmBin,
93
100
}
94
101
setEnvs ( config )
95
102
t . strictSame ( env , { ...extras } , 'no new environment vars to create' )
@@ -123,7 +130,7 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
123
130
INIT_CWD : cwd ,
124
131
EDITOR : 'vim' ,
125
132
HOME : undefined ,
126
- npm_execpath : require . main . filename ,
133
+ npm_execpath : npmBin ,
127
134
npm_node_execpath : execPath ,
128
135
npm_config_global_prefix : globalPrefix ,
129
136
npm_config_local_prefix : localPrefix ,
@@ -138,6 +145,8 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
138
145
execPath,
139
146
globalPrefix,
140
147
localPrefix,
148
+ npmPath,
149
+ npmBin,
141
150
}
142
151
setEnvs ( config )
143
152
t . strictSame ( env , { ...extras } , 'no new environment vars to create' )
@@ -164,7 +173,7 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
164
173
t . end ( )
165
174
} )
166
175
167
- t . test ( 'dont set npm_execpath if require.main.filename is not set' , t => {
176
+ t . test ( 'set npm_execpath even if require.main.filename is not set' , t => {
168
177
const { definitions, defaults } = mockDefinitions ( t )
169
178
const { filename } = require . main
170
179
t . teardown ( ( ) => require . main . filename = filename )
@@ -182,9 +191,10 @@ t.test('dont set npm_execpath if require.main.filename is not set', t => {
182
191
execPath,
183
192
globalPrefix,
184
193
localPrefix,
194
+ npmBin,
185
195
}
186
196
setEnvs ( config )
187
- t . equal ( env . npm_execpath , undefined , 'did not set npm_execpath' )
197
+ t . equal ( env . npm_execpath , npmBin , 'did not set npm_execpath' )
188
198
t . end ( )
189
199
} )
190
200
@@ -197,7 +207,7 @@ t.test('dont set configs marked as envExport:false', t => {
197
207
INIT_CWD : cwd ,
198
208
EDITOR : 'vim' ,
199
209
HOME : undefined ,
200
- npm_execpath : require . main . filename ,
210
+ npm_execpath : npmBin ,
201
211
npm_node_execpath : execPath ,
202
212
npm_config_global_prefix : globalPrefix ,
203
213
npm_config_local_prefix : localPrefix ,
@@ -212,6 +222,8 @@ t.test('dont set configs marked as envExport:false', t => {
212
222
execPath,
213
223
globalPrefix,
214
224
localPrefix,
225
+ npmPath,
226
+ npmBin,
215
227
}
216
228
setEnvs ( config )
217
229
t . strictSame ( env , { ...extras } , 'no new environment vars to create' )
0 commit comments