Lines Matching refs:cli
13 const cli = startCLI([script]); constant
15 cli.waitForInitialBreak()
16 .then(() => cli.waitForPrompt())
18 assert.match(cli.output, /debug>/, 'prints a prompt');
20 cli.output,
24 .then(() => cli.command('["hello", "world"].join(" ")'))
26 assert.match(cli.output, /hello world/, 'prints the result');
28 .then(() => cli.command(''))
31 cli.output,
36 .then(() => cli.command('version'))
39 cli.output.includes(process.versions.v8),
43 .then(() => cli.quit())