Lines Matching refs:cli
13 const cli = startCLI([fixtures.path('debugger/alive.js')]); constant
16 cli.quit();
20 cli.waitForInitialBreak()
21 .then(() => cli.waitForPrompt())
22 .then(() => cli.command('exec [typeof heartbeat, typeof process.exit]'))
25 cli.output,
30 .then(() => cli.command('repl'))
33 cli.output,
36 assert.doesNotMatch(cli.output, /debug>/, 'changes the repl style');
38 .then(() => cli.command('[typeof heartbeat, typeof process.exit]'))
39 .then(() => cli.waitFor(/function/))
40 .then(() => cli.waitForPrompt())
43 cli.output,
45 assert.match(cli.output, /> $/);
47 .then(() => cli.ctrlC())
48 .then(() => cli.waitFor(/debug> $/))
49 .then(() => cli.command('exec("[typeof heartbeat, typeof process.exit]")'))
52 cli.output,
57 .then(() => cli.command('cont'))
58 .then(() => cli.command('exec [typeof heartbeat, typeof process.exit]'))
61 cli.output,
65 .then(() => cli.quit())