@@ -220,7 +220,6 @@ fdescribe('execution', () => {
220
220
221
221
it ( 'should start Parse Server' , done => {
222
222
const env = { ...process . env } ;
223
- // env.NODE_OPTIONS = '--dns-result-order=ipv4first';
224
223
childProcess = spawn (
225
224
binPath ,
226
225
[ '--appId' , 'test' , '--masterKey' , 'test' , '--databaseURI' , databaseURI , '--port' , '1339' ] ,
@@ -239,7 +238,6 @@ fdescribe('execution', () => {
239
238
240
239
it ( 'should start Parse Server with GraphQL' , async done => {
241
240
const env = { ...process . env } ;
242
- env . NODE_OPTIONS = '--dns-result-order=ipv4first' ;
243
241
childProcess = spawn (
244
242
binPath ,
245
243
[
@@ -271,7 +269,6 @@ fdescribe('execution', () => {
271
269
272
270
it ( 'should start Parse Server with GraphQL and Playground' , async done => {
273
271
const env = { ...process . env } ;
274
- env . NODE_OPTIONS = '--dns-result-order=ipv4first' ;
275
272
childProcess = spawn (
276
273
binPath ,
277
274
[
@@ -305,7 +302,6 @@ fdescribe('execution', () => {
305
302
306
303
it ( 'can start Parse Server with auth via CLI' , done => {
307
304
const env = { ...process . env } ;
308
- env . NODE_OPTIONS = '--dns-result-order=ipv4first' ;
309
305
childProcess = spawn (
310
306
binPath ,
311
307
[ '--databaseURI' , databaseURI , './spec/configs/CLIConfigAuth.json' ] ,
0 commit comments