mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
695 B
44 lines
695 B
'use strict';
|
|
require('../common');
|
|
process.env.NODE_FORCE_READLINE = 1;
|
|
|
|
const repl = require('./helper-debugger-repl.js');
|
|
|
|
repl.startDebugger('breakpoints.js');
|
|
|
|
var addTest = repl.addTest;
|
|
|
|
// next
|
|
addTest('n', [
|
|
/debug>.*n/,
|
|
/break in .*:11/,
|
|
/9/, /10/, /11/, /12/, /13/
|
|
]);
|
|
|
|
// should repeat next
|
|
addTest('', [
|
|
/debug>/,
|
|
/break in .*:5/,
|
|
/3/, /4/, /5/, /6/, /7/,
|
|
]);
|
|
|
|
// continue
|
|
addTest('c', [
|
|
/debug>.*c/,
|
|
/break in .*:12/,
|
|
/10/, /11/, /12/, /13/, /14/
|
|
]);
|
|
|
|
// should repeat continue
|
|
addTest('', [
|
|
/debug>/,
|
|
/break in .*:5/,
|
|
/3/, /4/, /5/, /6/, /7/,
|
|
]);
|
|
|
|
// should repeat continue
|
|
addTest('', [
|
|
/debug>/,
|
|
/break in .*:23/,
|
|
/21/, /22/, /23/, /24/, /25/,
|
|
]);
|
|
|