@@ -9,14 +9,14 @@ This directory contains modules used to test the Node.js implementation.
99* [ Common module API] ( #common-module-api )
1010* [ Countdown module] ( #countdown-module )
1111* [ CPU Profiler module] ( #cpu-profiler-module )
12+ * [ Debugger module] ( #debugger-module )
1213* [ DNS module] ( #dns-module )
1314* [ Duplex pair helper] ( #duplex-pair-helper )
1415* [ Environment variables] ( #environment-variables )
1516* [ Fixtures module] ( #fixtures-module )
1617* [ Heap dump checker module] ( #heap-dump-checker-module )
1718* [ hijackstdio module] ( #hijackstdio-module )
1819* [ HTTP2 module] ( #http2-module )
19- * [ Inspector CLI module] ( #inspector-cli-module )
2020* [ Internet module] ( #internet-module )
2121* [ ongc module] ( #ongc-module )
2222* [ Report module] ( #report-module )
@@ -506,6 +506,34 @@ Sampling interval in microseconds.
506506Throws an ` AssertionError ` if there are no call frames with the expected
507507` suffix ` in the profiling data contained in ` file ` .
508508
509+ ## Debugger module
510+
511+ Provides common functionality for tests for ` node inspect ` .
512+
513+ ### ` startCLI(args[[, flags], spawnOpts]) `
514+
515+ * ` args ` [ < ; string>] [ ]
516+ * ` flags ` [ < ; string>] [ ] default = [ ]
517+ * ` showOpts ` [ < ; Object>] [ ] default = {}
518+ * return [ < ; Object>] [ ]
519+
520+ Returns a null-prototype object with properties that are functions and getters
521+ used to interact with the ` node inspect ` CLI. These functions are:
522+
523+ * ` flushOutput() `
524+ * ` waitFor() `
525+ * ` waitForPrompt() `
526+ * ` waitForInitialBreak() `
527+ * ` breakInfo `
528+ * ` ctrlC() `
529+ * ` output `
530+ * ` rawOutput `
531+ * ` parseSourceLines() `
532+ * ` writeLine() `
533+ * ` command() `
534+ * ` stepCommand() `
535+ * ` quit() `
536+
509537## ` DNS ` Module
510538
511539The ` DNS ` module provides utilities related to the ` dns ` built-in module.
@@ -824,34 +852,6 @@ upon initial establishment of a connection.
824852socket .write (http2 .kClientMagic );
825853```
826854
827- ## Inspector CLI module
828-
829- Provides common functionality for tests for ` node inspect ` .
830-
831- ### ` startCLI(args[[, flags], spawnOpts]) `
832-
833- * ` args ` [ < ; string>] [ ]
834- * ` flags ` [ < ; string>] [ ] default = [ ]
835- * ` showOpts ` [ < ; Object>] [ ] default = {}
836- * return [ < ; Object>] [ ]
837-
838- Returns a null-prototype object with properties that are functions and getters
839- used to interact with the ` node inspect ` CLI. These functions are:
840-
841- * ` flushOutput() `
842- * ` waitFor() `
843- * ` waitForPrompt() `
844- * ` waitForInitialBreak() `
845- * ` breakInfo `
846- * ` ctrlC() `
847- * ` output `
848- * ` rawOutput `
849- * ` parseSourceLines() `
850- * ` writeLine() `
851- * ` command() `
852- * ` stepCommand() `
853- * ` quit() `
854-
855855## Internet Module
856856
857857The ` common/internet ` module provides utilities for working with
0 commit comments