Skip to content

Commit 4e947bc

Browse files
committed
remove ipv4
1 parent 091bce7 commit 4e947bc

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

spec/CLI.spec.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ fdescribe('execution', () => {
220220

221221
it('should start Parse Server', done => {
222222
const env = { ...process.env };
223-
// env.NODE_OPTIONS = '--dns-result-order=ipv4first';
224223
childProcess = spawn(
225224
binPath,
226225
['--appId', 'test', '--masterKey', 'test', '--databaseURI', databaseURI, '--port', '1339'],
@@ -239,7 +238,6 @@ fdescribe('execution', () => {
239238

240239
it('should start Parse Server with GraphQL', async done => {
241240
const env = { ...process.env };
242-
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
243241
childProcess = spawn(
244242
binPath,
245243
[
@@ -271,7 +269,6 @@ fdescribe('execution', () => {
271269

272270
it('should start Parse Server with GraphQL and Playground', async done => {
273271
const env = { ...process.env };
274-
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
275272
childProcess = spawn(
276273
binPath,
277274
[
@@ -305,7 +302,6 @@ fdescribe('execution', () => {
305302

306303
it('can start Parse Server with auth via CLI', done => {
307304
const env = { ...process.env };
308-
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
309305
childProcess = spawn(
310306
binPath,
311307
['--databaseURI', databaseURI, './spec/configs/CLIConfigAuth.json'],

0 commit comments

Comments
 (0)