Lines Matching refs:cli
13 const cli = startCLI([fixtures.path('debugger/backtrace.js')]); constant
16 cli.quit();
20 cli.waitForInitialBreak()
21 .then(() => cli.waitForPrompt())
22 .then(() => cli.stepCommand('c'))
23 .then(() => cli.command('exec .scope'))
26 cli.output,
28 assert.match(cli.output, /'a'/, 'displays local / function arg');
29 assert.match(cli.output, /'l1'/, 'displays local scope');
31 cli.output,
36 .then(() => cli.quit())