@@ -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 )
@@ -513,6 +513,34 @@ Sampling interval in microseconds.
513513Throws an ` AssertionError ` if there are no call frames with the expected
514514` suffix ` in the profiling data contained in ` file ` .
515515
516+ ## Debugger module
517+
518+ Provides common functionality for tests for ` node inspect ` .
519+
520+ ### ` startCLI(args[[, flags], spawnOpts]) `
521+
522+ * ` args ` [ < ; string>] [ ]
523+ * ` flags ` [ < ; string>] [ ] default = [ ]
524+ * ` showOpts ` [ < ; Object>] [ ] default = {}
525+ * return [ < ; Object>] [ ]
526+
527+ Returns a null-prototype object with properties that are functions and getters
528+ used to interact with the ` node inspect ` CLI. These functions are:
529+
530+ * ` flushOutput() `
531+ * ` waitFor() `
532+ * ` waitForPrompt() `
533+ * ` waitForInitialBreak() `
534+ * ` breakInfo `
535+ * ` ctrlC() `
536+ * ` output `
537+ * ` rawOutput `
538+ * ` parseSourceLines() `
539+ * ` writeLine() `
540+ * ` command() `
541+ * ` stepCommand() `
542+ * ` quit() `
543+
516544## ` DNS ` Module
517545
518546The ` DNS ` module provides utilities related to the ` dns ` built-in module.
@@ -831,34 +859,6 @@ upon initial establishment of a connection.
831859socket .write (http2 .kClientMagic );
832860```
833861
834- ## Inspector CLI module
835-
836- Provides common functionality for tests for ` node inspect ` .
837-
838- ### ` startCLI(args[[, flags], spawnOpts]) `
839-
840- * ` args ` [ < ; string>] [ ]
841- * ` flags ` [ < ; string>] [ ] default = [ ]
842- * ` showOpts ` [ < ; Object>] [ ] default = {}
843- * return [ < ; Object>] [ ]
844-
845- Returns a null-prototype object with properties that are functions and getters
846- used to interact with the ` node inspect ` CLI. These functions are:
847-
848- * ` flushOutput() `
849- * ` waitFor() `
850- * ` waitForPrompt() `
851- * ` waitForInitialBreak() `
852- * ` breakInfo `
853- * ` ctrlC() `
854- * ` output `
855- * ` rawOutput `
856- * ` parseSourceLines() `
857- * ` writeLine() `
858- * ` command() `
859- * ` stepCommand() `
860- * ` quit() `
861-
862862## Internet Module
863863
864864The ` common/internet ` module provides utilities for working with
0 commit comments