Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-debugger-repl-term.js « debugger « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a42a253c5a9aee4f6da0f984c01a608af4f25aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
process.env.NODE_FORCE_READLINE = 1;

var 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/,
]);