Skip to content

Commit 78417ea

Browse files
committed
Update CLI.spec.js
1 parent 36d404b commit 78417ea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spec/CLI.spec.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,7 @@ describe('execution', () => {
296296
});
297297

298298
it('can start Parse Server with auth via CLI', done => {
299-
const env = { ...process.env };
300-
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
301-
childProcess = spawn(binPath, ['./spec/configs/CLIConfigAuth.json'], { env });
299+
childProcess = spawn(binPath, ['./spec/configs/CLIConfigAuth.json'], { env: process.env });
302300
childProcess.stdout.on('data', data => {
303301
data = data.toString();
304302
if (data.includes('parse-server running on')) {

0 commit comments

Comments
 (0)