Lines Matching full:then
24 .then(() => cli.waitForPrompt())
25 .then(() => {
29 .then(() => cli.command('c'))
31 .then(() => cli.waitFor(/disconnect|FATAL ERROR/))
34 .then(() => cli.stepCommand('r'))
35 .then(() => cli.waitForInitialBreak())
36 .then(() => {
39 .then(() => cli.command('breakOnException'))
40 .then(() => cli.stepCommand('c'))
41 .then(() => {
44 .then(() => cli.stepCommand('c'))
45 .then(() => {
50 .then(() => cli.command('breakOnUncaught'))
51 .then(() => cli.stepCommand('r')) // Also, the setting survives the restart.
52 .then(() => cli.waitForInitialBreak())
53 .then(() => {
56 .then(() => cli.stepCommand('c'))
57 .then(() => {
62 .then(() => cli.command('breakOnNone'))
63 .then(() => cli.stepCommand('r'))
64 .then(() => cli.waitForInitialBreak())
65 .then(() => {
68 .then(() => cli.command('c'))
70 .then(() => cli.waitFor(/disconnect|FATAL ERROR/))
72 .then(() => cli.quit())
73 .then(null, onFatal);