Skip to content

Commit 238d681

Browse files
committed
Update CLI.spec.js
1 parent c729d94 commit 238d681

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

spec/CLI.spec.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,11 @@ describe('execution', () => {
306306
fit('can start Parse Server with auth via CLI', done => {
307307
const env = { ...process.env };
308308
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
309-
childProcess = spawn(binPath, ['./spec/configs/CLIConfigAuth.json'], { env });
309+
childProcess = spawn(
310+
binPath,
311+
['--databaseURI', databaseURI, './spec/configs/CLIConfigAuth.json'],
312+
{ env }
313+
);
310314
childProcess.stdout.on('data', data => {
311315
data = data.toString();
312316
console.log(data);

0 commit comments

Comments
 (0)