Lines Matching refs:cli
17 const cli = startCLI(['--port=0', fixtures.path('debugger/empty.js')]);
20 cli.quit();
26 await cli.waitForInitialBreak();
27 await cli.waitForPrompt();
28 await cli.command('exec console.profile()');
29 assert.match(cli.output, /undefined/);
30 await cli.command('exec console.profileEnd()');
32 assert.match(cli.output, /undefined/);
33 assert.match(cli.output, /Captured new CPU profile\./);
34 await cli.quit();