Lines Matching refs:then
24 .then(() => cli.waitForPrompt())
25 .then(() => cli.command('sb("break.js", 3)'))
26 .then(() => cli.command('sb("break.js", 9)'))
27 .then(() => cli.command('breakpoints'))
28 .then(() => {
32 .then(() => cli.command('clearBreakpoint("break.js", 4)'))
33 .then(() => {
36 .then(() => cli.command('clearBreakpoint("not-such-script.js", 3)'))
37 .then(() => {
40 .then(() => cli.command('clearBreakpoint("break.js", 3)'))
41 .then(() => cli.command('breakpoints'))
42 .then(() => {
45 .then(() => cli.stepCommand('cont'))
46 .then(() => {
51 .then(() => cli.quit())
52 .then(null, onFatal);