Skip to content

Commit c729d94

Browse files
committed
Update CLI.spec.js
1 parent 4dcddb6 commit c729d94

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec/CLI.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,12 +303,13 @@ describe('execution', () => {
303303
});
304304
});
305305

306-
it('can start Parse Server with auth via CLI', done => {
306+
fit('can start Parse Server with auth via CLI', done => {
307307
const env = { ...process.env };
308308
env.NODE_OPTIONS = '--dns-result-order=ipv4first';
309309
childProcess = spawn(binPath, ['./spec/configs/CLIConfigAuth.json'], { env });
310310
childProcess.stdout.on('data', data => {
311311
data = data.toString();
312+
console.log(data);
312313
if (data.includes('parse-server running on')) {
313314
done();
314315
}

0 commit comments

Comments
 (0)