We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36d404b commit 78417eaCopy full SHA for 78417ea
spec/CLI.spec.js
@@ -296,9 +296,7 @@ describe('execution', () => {
296
});
297
298
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 });
+ childProcess = spawn(binPath, ['./spec/configs/CLIConfigAuth.json'], { env: process.env });
302
childProcess.stdout.on('data', data => {
303
data = data.toString();
304
if (data.includes('parse-server running on')) {
0 commit comments