@@ -31,10 +31,11 @@ The `benchmark` module is used by tests to run benchmarks.
31
31
32
32
### ` runBenchmark(name, args, env) `
33
33
34
- * ` name ` [ \< string>] [ ] Name of benchmark suite to be run.
35
- * ` args ` [ \< Array>] [ ] Array of environment variable key/value pairs (ex:
34
+ * ` name ` [ \< string>] [ <string> ] Name of benchmark suite to be run.
35
+ * ` args ` [ \< Array>] [ <Array> ] Array of environment variable key/value pairs (ex:
36
36
` n=1 ` ) to be applied via ` --set ` .
37
- * ` env ` [ \< Object>] [ ] Environment variables to be applied during the run.
37
+ * ` env ` [ \< Object>] [ <Object> ] Environment variables to be applied during the
38
+ run.
38
39
39
40
## Common Module API
40
41
@@ -43,14 +44,14 @@ tasks.
43
44
44
45
### ` allowGlobals(...allowlist) `
45
46
46
- * ` allowlist ` [ \< Array>] [ ] Array of Globals
47
- * return [ \< Array>] [ ]
47
+ * ` allowlist ` [ \< Array>] [ <Array> ] Array of Globals
48
+ * return [ \< Array>] [ <Array> ]
48
49
49
50
Takes ` allowlist ` and concats that with predefined ` knownGlobals ` .
50
51
51
52
### ` canCreateSymLink() `
52
53
53
- * return [ \< boolean>] [ ]
54
+ * return [ \< boolean>] [ <boolean> ]
54
55
55
56
Checks whether the current running process can create symlinks. On Windows, this
56
57
returns ` false ` if the process running doesn't have privileges to create
@@ -64,17 +65,17 @@ Creates a 10 MB file of all null characters.
64
65
65
66
### ` enoughTestMem `
66
67
67
- * [ \< boolean>] [ ]
68
+ * [ \< boolean>] [ <boolean> ]
68
69
69
70
Indicates if there is more than 1gb of total memory.
70
71
71
72
### ` expectsError(validator[, exact]) `
72
73
73
- * ` validator ` [ \< Object>] [ ] | [ \< RegExp>] [ ] | [ \< Function> ] [ ] |
74
- [ \< Error>] [ ] The validator behaves identical to
75
- ` assert.throws(fn, validator) ` .
76
- * ` exact ` [ \< number>] [ ] default = 1
77
- * return [ \< Function>] [ ] A callback function that expects an error.
74
+ * ` validator ` [ \< Object>] [ <Object> ] | [ \< RegExp>] [ <RegExp> ] |
75
+ [ \< Function> ] [ <Function> ] | [ \< Error>] [ <Error> ] The validator behaves
76
+ identical to ` assert.throws(fn, validator) ` .
77
+ * ` exact ` [ \< number>] [ <number> ] default = 1
78
+ * return [ \< Function>] [ <Function> ] A callback function that expects an error.
78
79
79
80
A function suitable as callback to validate callback based errors. The error is
80
81
validated using ` assert.throws(() => { throw error; }, validator) ` . If the
@@ -83,9 +84,9 @@ test is complete, then the test will fail.
83
84
84
85
### ` expectWarning(name[, expected[, code]]) `
85
86
86
- * ` name ` [ \< string>] [ ] | [ \< Object>] [ ]
87
- * ` expected ` [ \< string>] [ ] | [ \< Array>] [ ] | [ \< Object>] [ ]
88
- * ` code ` [ \< string>] [ ]
87
+ * ` name ` [ \< string>] [ <string> ] | [ \< Object>] [ <Object> ]
88
+ * ` expected ` [ \< string>] [ <string> ] | [ \< Array>] [ <Array> ] | [ \< Object>] [ <Object> ]
89
+ * ` code ` [ \< string>] [ <string> ]
89
90
90
91
Tests whether ` name ` , ` expected ` , and ` code ` are part of a raised warning.
91
92
@@ -130,23 +131,23 @@ expectWarning({
130
131
131
132
### ` getArrayBufferViews(buf) `
132
133
133
- * ` buf ` [ \< Buffer>] [ ]
134
- * return [ \< ArrayBufferView>] [ ] \[ ]
134
+ * ` buf ` [ \< Buffer>] [ <Buffer> ]
135
+ * return [ \< ArrayBufferView>] [ <ArrayBufferView> ] \[ ]
135
136
136
137
Returns an instance of all possible ` ArrayBufferView ` s of the provided Buffer.
137
138
138
139
### ` getBufferSources(buf) `
139
140
140
- * ` buf ` [ \< Buffer>] [ ]
141
- * return [ \< BufferSource>] [ ] \[ ]
141
+ * ` buf ` [ \< Buffer>] [ <Buffer> ]
142
+ * return [ \< BufferSource>] [ <BufferSource> ] \[ ]
142
143
143
144
Returns an instance of all possible ` BufferSource ` s of the provided Buffer,
144
145
consisting of all ` ArrayBufferView ` and an ` ArrayBuffer ` .
145
146
146
147
### ` getCallSite(func) `
147
148
148
- * ` func ` [ \< Function>] [ ]
149
- * return [ \< string>] [ ]
149
+ * ` func ` [ \< Function>] [ <Function> ]
150
+ * return [ \< string>] [ <string> ]
150
151
151
152
Returns the file name and line number for the provided Function.
152
153
@@ -158,13 +159,13 @@ The TTY file descriptor is assumed to be capable of being writable.
158
159
159
160
### ` hasCrypto `
160
161
161
- * [ \< boolean>] [ ]
162
+ * [ \< boolean>] [ <boolean> ]
162
163
163
164
Indicates whether OpenSSL is available.
164
165
165
166
### ` hasFipsCrypto `
166
167
167
- * [ \< boolean>] [ ]
168
+ * [ \< boolean>] [ <boolean> ]
168
169
169
170
Indicates that Node.js has been linked with a FIPS compatible OpenSSL library,
170
171
and that FIPS as been enabled using ` --enable-fips ` .
@@ -175,104 +176,104 @@ used to determine that situation.
175
176
176
177
### ` hasIntl `
177
178
178
- * [ \< boolean>] [ ]
179
+ * [ \< boolean>] [ <boolean> ]
179
180
180
181
Indicates if [ internationalization] [ ] is supported.
181
182
182
183
### ` hasIPv6 `
183
184
184
- * [ \< boolean>] [ ]
185
+ * [ \< boolean>] [ <boolean> ]
185
186
186
187
Indicates whether ` IPv6 ` is supported on this platform.
187
188
188
189
### ` hasMultiLocalhost `
189
190
190
- * [ \< boolean>] [ ]
191
+ * [ \< boolean>] [ <boolean> ]
191
192
192
193
Indicates if there are multiple localhosts available.
193
194
194
195
### ` inFreeBSDJail `
195
196
196
- * [ \< boolean>] [ ]
197
+ * [ \< boolean>] [ <boolean> ]
197
198
198
199
Checks whether free BSD Jail is true or false.
199
200
200
201
### ` isAIX `
201
202
202
- * [ \< boolean>] [ ]
203
+ * [ \< boolean>] [ <boolean> ]
203
204
204
205
Platform check for Advanced Interactive eXecutive (AIX).
205
206
206
207
### ` isAlive(pid) `
207
208
208
- * ` pid ` [ \< number>] [ ]
209
- * return [ \< boolean>] [ ]
209
+ * ` pid ` [ \< number>] [ <number> ]
210
+ * return [ \< boolean>] [ <boolean> ]
210
211
211
212
Attempts to 'kill' ` pid `
212
213
213
214
### ` isDumbTerminal `
214
215
215
- * [ \< boolean>] [ ]
216
+ * [ \< boolean>] [ <boolean> ]
216
217
217
218
### ` isFreeBSD `
218
219
219
- * [ \< boolean>] [ ]
220
+ * [ \< boolean>] [ <boolean> ]
220
221
221
222
Platform check for Free BSD.
222
223
223
224
### ` isIBMi `
224
225
225
- * [ \< boolean>] [ ]
226
+ * [ \< boolean>] [ <boolean> ]
226
227
227
228
Platform check for IBMi.
228
229
229
230
### ` isLinux `
230
231
231
- * [ \< boolean>] [ ]
232
+ * [ \< boolean>] [ <boolean> ]
232
233
233
234
Platform check for Linux.
234
235
235
236
### ` isLinuxPPCBE `
236
237
237
- * [ \< boolean>] [ ]
238
+ * [ \< boolean>] [ <boolean> ]
238
239
239
240
Platform check for Linux on PowerPC.
240
241
241
242
### ` isOSX `
242
243
243
- * [ \< boolean>] [ ]
244
+ * [ \< boolean>] [ <boolean> ]
244
245
245
246
Platform check for macOS.
246
247
247
248
### ` isSunOS `
248
249
249
- * [ \< boolean>] [ ]
250
+ * [ \< boolean>] [ <boolean> ]
250
251
251
252
Platform check for SunOS.
252
253
253
254
### ` isWindows `
254
255
255
- * [ \< boolean>] [ ]
256
+ * [ \< boolean>] [ <boolean> ]
256
257
257
258
Platform check for Windows.
258
259
259
260
### ` localhostIPv4 `
260
261
261
- * [ \< string>] [ ]
262
+ * [ \< string>] [ <string> ]
262
263
263
264
IP of ` localhost ` .
264
265
265
266
### ` localIPv6Hosts `
266
267
267
- * [ \< Array>] [ ]
268
+ * [ \< Array>] [ <Array> ]
268
269
269
270
Array of IPV6 representations for ` localhost ` .
270
271
271
272
### ` mustCall([fn][, exact]) `
272
273
273
- * ` fn ` [ \< Function>] [ ] default = () => {}
274
- * ` exact ` [ \< number>] [ ] default = 1
275
- * return [ \< Function>] [ ]
274
+ * ` fn ` [ \< Function>] [ <Function> ] default = () => {}
275
+ * ` exact ` [ \< number>] [ <number> ] default = 1
276
+ * return [ \< Function>] [ <Function> ]
276
277
277
278
Returns a function that calls ` fn ` . If the returned function has not been called
278
279
exactly ` exact ` number of times when the test is complete, then the test will
@@ -282,9 +283,9 @@ If `fn` is not provided, an empty function will be used.
282
283
283
284
### ` mustCallAtLeast([fn][, minimum]) `
284
285
285
- * ` fn ` [ \< Function>] [ ] default = () => {}
286
- * ` minimum ` [ \< number>] [ ] default = 1
287
- * return [ \< Function>] [ ]
286
+ * ` fn ` [ \< Function>] [ <Function> ] default = () => {}
287
+ * ` minimum ` [ \< number>] [ <number> ] default = 1
288
+ * return [ \< Function>] [ <Function> ]
288
289
289
290
Returns a function that calls ` fn ` . If the returned function has not been called
290
291
at least ` minimum ` number of times when the test is complete, then the test will
@@ -294,67 +295,67 @@ If `fn` is not provided, an empty function will be used.
294
295
295
296
### ` mustNotCall([msg]) `
296
297
297
- * ` msg ` [ \< string>] [ ] default = 'function should not have been called'
298
- * return [ \< Function>] [ ]
298
+ * ` msg ` [ \< string>] [ <string> ] default = 'function should not have been called'
299
+ * return [ \< Function>] [ <Function> ]
299
300
300
301
Returns a function that triggers an ` AssertionError ` if it is invoked. ` msg ` is
301
302
used as the error message for the ` AssertionError ` .
302
303
303
304
### ` mustSucceed([fn]) `
304
305
305
- * ` fn ` [ \< Function>] [ ] default = () => {}
306
- * return [ \< Function>] [ ]
306
+ * ` fn ` [ \< Function>] [ <Function> ] default = () => {}
307
+ * return [ \< Function>] [ <Function> ]
307
308
308
309
Returns a function that accepts arguments ` (err, ...args) ` . If ` err ` is not
309
310
` undefined ` or ` null ` , it triggers an ` AssertionError ` . Otherwise, it calls
310
311
` fn(...args) ` .
311
312
312
313
### ` nodeProcessAborted(exitCode, signal) `
313
314
314
- * ` exitCode ` [ \< number>] [ ]
315
- * ` signal ` [ \< string>] [ ]
316
- * return [ \< boolean>] [ ]
315
+ * ` exitCode ` [ \< number>] [ <number> ]
316
+ * ` signal ` [ \< string>] [ <string> ]
317
+ * return [ \< boolean>] [ <boolean> ]
317
318
318
319
Returns ` true ` if the exit code ` exitCode ` and/or signal name ` signal ` represent
319
320
the exit code and/or signal name of a node process that aborted, ` false `
320
321
otherwise.
321
322
322
323
### ` opensslCli `
323
324
324
- * [ \< boolean>] [ ]
325
+ * [ \< boolean>] [ <boolean> ]
325
326
326
327
Indicates whether 'opensslCli' is supported.
327
328
328
329
### ` platformTimeout(ms) `
329
330
330
- * ` ms ` [ \< number>] [ ] | [ \< bigint>] [ ]
331
- * return [ \< number>] [ ] | [ \< bigint>] [ ]
331
+ * ` ms ` [ \< number>] [ <number> ] | [ \< bigint>] [ <bigint> ]
332
+ * return [ \< number>] [ <number> ] | [ \< bigint>] [ <bigint> ]
332
333
333
334
Returns a timeout value based on detected conditions. For example, a debug build
334
335
may need extra time so the returned value will be larger than on a release
335
336
build.
336
337
337
338
### ` PIPE `
338
339
339
- * [ \< string>] [ ]
340
+ * [ \< string>] [ <string> ]
340
341
341
342
Path to the test socket.
342
343
343
344
### ` PORT `
344
345
345
- * [ \< number>] [ ]
346
+ * [ \< number>] [ <number> ]
346
347
347
348
A port number for tests to use if one is needed.
348
349
349
350
### ` printSkipMessage(msg) `
350
351
351
- * ` msg ` [ \< string>] [ ]
352
+ * ` msg ` [ \< string>] [ <string> ]
352
353
353
354
Logs '1..0 # Skipped: ' + ` msg `
354
355
355
356
### ` pwdCommand `
356
357
357
- * [ \< array>] [ ] First two argument for the ` spawn ` /` exec ` functions.
358
+ * [ \< array>] [ <array> ] First two argument for the ` spawn ` /` exec ` functions.
358
359
359
360
Platform normalized ` pwd ` command options. Usage example:
360
361
@@ -367,14 +368,14 @@ spawn(...common.pwdCommand, { stdio: ['pipe'] });
367
368
368
369
### ` requireNoPackageJSONAbove([dir]) `
369
370
370
- * ` dir ` [ \< string>] [ ] default = \_\_ dirname
371
+ * ` dir ` [ \< string>] [ <string> ] default = \_\_ dirname
371
372
372
373
Throws an ` AssertionError ` if a ` package.json ` file exists in any ancestor
373
374
directory above ` dir ` . Such files may interfere with proper test functionality.
374
375
375
376
### ` runWithInvalidFD(func) `
376
377
377
- * ` func ` [ \< Function>] [ ]
378
+ * ` func ` [ \< Function>] [ <Function> ]
378
379
379
380
Runs ` func ` with an invalid file descriptor that is an unsigned integer and
380
381
can be used to trigger ` EBADF ` as the first argument. If no such file
@@ -383,7 +384,7 @@ will not be run.
383
384
384
385
### ` skip(msg) `
385
386
386
- * ` msg ` [ \< string>] [ ]
387
+ * ` msg ` [ \< string>] [ <string> ]
387
388
388
389
Logs '1..0 # Skipped: ' + ` msg ` and exits with exit code ` 0 ` .
389
390
@@ -476,15 +477,15 @@ Environment variables used in profiled processes.
476
477
### ` getCpuProfiles(dir) `
477
478
478
479
* ` dir ` {string} The directory containing the CPU profile files.
479
- * return [ \< string>] [ ]
480
+ * return [ \< string>] [ <string> ]
480
481
481
482
Returns an array of all ` .cpuprofile ` files found in ` dir ` .
482
483
483
484
### ` getFrames(file, suffix) `
484
485
485
486
* ` file ` {string} Path to a ` .cpuprofile ` file.
486
487
* ` suffix ` {string} Suffix of the URL of call frames to retrieve.
487
- * returns { frames: [ \< Object>] [ ] , nodes: [ \< Object>] [ ] }
488
+ * returns { frames: [ \< Object>] [ <Object> ] , nodes: [ \< Object>] [ <Object> ] }
488
489
489
490
Returns an object containing an array of the relevant call frames and an array
490
491
of all the profile nodes.
@@ -508,10 +509,10 @@ Provides common functionality for tests for `node inspect`.
508
509
509
510
### ` startCLI(args[[, flags], spawnOpts]) `
510
511
511
- * ` args ` [ \< string>] [ ]
512
- * ` flags ` [ \< string>] [ ] default = \[ ]
513
- * ` showOpts ` [ \< Object>] [ ] default = {}
514
- * return [ \< Object>] [ ]
512
+ * ` args ` [ \< string>] [ <string> ]
513
+ * ` flags ` [ \< string>] [ <string> ] default = \[ ]
514
+ * ` showOpts ` [ \< Object>] [ <Object> ] default = {}
515
+ * return [ \< Object>] [ <Object> ]
515
516
516
517
Returns a null-prototype object with properties that are functions and getters
517
518
used to interact with the ` node inspect ` CLI. These functions are:
@@ -536,9 +537,9 @@ The `DNS` module provides utilities related to the `dns` built-in module.
536
537
537
538
### ` errorLookupMock(code, syscall) `
538
539
539
- * ` code ` [ \< string>] [ ] Defaults to ` dns.mockedErrorCode ` .
540
- * ` syscall ` [ \< string>] [ ] Defaults to ` dns.mockedSysCall ` .
541
- * return [ \< Function>] [ ]
540
+ * ` code ` [ \< string>] [ <string> ] Defaults to ` dns.mockedErrorCode ` .
541
+ * ` syscall ` [ \< string>] [ <string> ] Defaults to ` dns.mockedSysCall ` .
542
+ * return [ \< Function>] [ <Function> ]
542
543
543
544
A mock for the ` lookup ` option of ` net.connect() ` that would result in an error
544
545
with the ` code ` and the ` syscall ` specified. Returns a function that has the
@@ -554,39 +555,39 @@ The default `syscall` of errors generated by `errorLookupMock`.
554
555
555
556
### ` readDomainFromPacket(buffer, offset) `
556
557
557
- * ` buffer ` [ \< Buffer>] [ ]
558
- * ` offset ` [ \< number>] [ ]
559
- * return [ \< Object>] [ ]
558
+ * ` buffer ` [ \< Buffer>] [ <Buffer> ]
559
+ * ` offset ` [ \< number>] [ <number> ]
560
+ * return [ \< Object>] [ <Object> ]
560
561
561
562
Reads the domain string from a packet and returns an object containing the
562
563
number of bytes read and the domain.
563
564
564
565
### ` parseDNSPacket(buffer) `
565
566
566
- * ` buffer ` [ \< Buffer>] [ ]
567
- * return [ \< Object>] [ ]
567
+ * ` buffer ` [ \< Buffer>] [ <Buffer> ]
568
+ * return [ \< Object>] [ <Object> ]
568
569
569
570
Parses a DNS packet. Returns an object with the values of the various flags of
570
571
the packet depending on the type of packet.
571
572
572
573
### ` writeIPv6(ip) `
573
574
574
- * ` ip ` [ \< string>] [ ]
575
- * return [ \< Buffer>] [ ]
575
+ * ` ip ` [ \< string>] [ <string> ]
576
+ * return [ \< Buffer>] [ <Buffer> ]
576
577
577
578
Reads an IPv6 String and returns a Buffer containing the parts.
578
579
579
580
### ` writeDomainName(domain) `
580
581
581
- * ` domain ` [ \< string>] [ ]
582
- * return [ \< Buffer>] [ ]
582
+ * ` domain ` [ \< string>] [ <string> ]
583
+ * return [ \< Buffer>] [ <Buffer> ]
583
584
584
585
Reads a Domain String and returns a Buffer containing the domain.
585
586
586
587
### ` writeDNSPacket(parsed) `
587
588
588
- * ` parsed ` [ \< Object>] [ ]
589
- * return [ \< Buffer>] [ ]
589
+ * ` parsed ` [ \< Object>] [ <Object> ]
590
+ * return [ \< Buffer>] [ <Buffer> ]
590
591
591
592
Takes in a parsed Object and writes its fields to a DNS packet as a Buffer
592
593
object.
@@ -630,26 +631,26 @@ files in the `test/fixtures` directory.
630
631
631
632
### ` fixtures.fixturesDir `
632
633
633
- * [ \< string>] [ ]
634
+ * [ \< string>] [ <string> ]
634
635
635
636
The absolute path to the ` test/fixtures/ ` directory.
636
637
637
638
### ` fixtures.path(...args) `
638
639
639
- * ` ...args ` [ \< string>] [ ]
640
+ * ` ...args ` [ \< string>] [ <string> ]
640
641
641
642
Returns the result of ` path.join(fixtures.fixturesDir, ...args) ` .
642
643
643
644
### ` fixtures.readSync(args[, enc]) `
644
645
645
- * ` args ` [ \< string>] [ ] | [ \< Array>] [ ]
646
+ * ` args ` [ \< string>] [ <string> ] | [ \< Array>] [ <Array> ]
646
647
647
648
Returns the result of
648
649
` fs.readFileSync(path.join(fixtures.fixturesDir, ...args), 'enc') ` .
649
650
650
651
### ` fixtures.readKey(arg[, enc]) `
651
652
652
- * ` arg ` [ \< string>] [ ]
653
+ * ` arg ` [ \< string>] [ <string> ]
653
654
654
655
Returns the result of
655
656
` fs.readFileSync(path.join(fixtures.fixturesDir, 'keys', arg), 'enc') ` .
@@ -668,12 +669,13 @@ one listed below. (`heap.validateSnapshotNodes(...)` is a shortcut for
668
669
669
670
### ` heap.validateSnapshotNodes(name, expected, options) `
670
671
671
- * ` name ` [ \< string>] [ ] Look for this string as the name of heap dump nodes.
672
- * ` expected ` [ \< Array>] [ ] A list of objects, possibly with an ` children `
672
+ * ` name ` [ \< string>] [ <string> ] Look for this string as the name of heap dump
673
+ nodes.
674
+ * ` expected ` [ \< Array>] [ <Array> ] A list of objects, possibly with an ` children `
673
675
property that points to expected other adjacent nodes.
674
- * ` options ` [ \< Array>] [ ]
675
- * ` loose ` [ \< boolean>] [ ] Do not expect an exact listing of occurrences
676
- of nodes with name ` name ` in ` expected ` .
676
+ * ` options ` [ \< Array>] [ <Array> ]
677
+ * ` loose ` [ \< boolean>] [ <boolean> ] Do not expect an exact listing of
678
+ occurrences of nodes with name ` name ` in ` expected ` .
677
679
678
680
Create a heap dump and an embedder graph copy and validate occurrences.
679
681
@@ -711,7 +713,7 @@ console.log('this is sent to the hijacked listener');
711
713
712
714
### ` hijackStderr(listener) `
713
715
714
- * ` listener ` [ \< Function>] [ ] : a listener with a single parameter
716
+ * ` listener ` [ \< Function>] [ <Function> ] : a listener with a single parameter
715
717
called ` data ` .
716
718
717
719
Eavesdrop to ` process.stderr.write() ` calls. Once ` process.stderr.write() ` is
@@ -721,7 +723,7 @@ the number of calls.
721
723
722
724
### ` hijackStdout(listener) `
723
725
724
- * ` listener ` [ \< Function>] [ ] : a listener with a single parameter
726
+ * ` listener ` [ \< Function>] [ <Function> ] : a listener with a single parameter
725
727
called ` data ` .
726
728
727
729
Eavesdrop to ` process.stdout.write() ` calls. Once ` process.stdout.write() ` is
@@ -865,27 +867,27 @@ internet-related tests.
865
867
866
868
### ` internet.addresses `
867
869
868
- * [ \< Object>] [ ]
869
- * ` INET_HOST ` [ \< string>] [ ] A generic host that has registered common
870
+ * [ \< Object>] [ <Object> ]
871
+ * ` INET_HOST ` [ \< string>] [ <string> ] A generic host that has registered common
870
872
DNS records, supports both IPv4 and IPv6, and provides basic HTTP/HTTPS
871
873
services
872
- * ` INET4_HOST ` [ \< string>] [ ] A host that provides IPv4 services
873
- * ` INET6_HOST ` [ \< string>] [ ] A host that provides IPv6 services
874
- * ` INET4_IP ` [ \< string>] [ ] An accessible IPv4 IP, defaults to the
874
+ * ` INET4_HOST ` [ \< string>] [ <string> ] A host that provides IPv4 services
875
+ * ` INET6_HOST ` [ \< string>] [ <string> ] A host that provides IPv6 services
876
+ * ` INET4_IP ` [ \< string>] [ <string> ] An accessible IPv4 IP, defaults to the
875
877
Google Public DNS IPv4 address
876
- * ` INET6_IP ` [ \< string>] [ ] An accessible IPv6 IP, defaults to the
878
+ * ` INET6_IP ` [ \< string>] [ <string> ] An accessible IPv6 IP, defaults to the
877
879
Google Public DNS IPv6 address
878
- * ` INVALID_HOST ` [ \< string>] [ ] An invalid host that cannot be resolved
879
- * ` MX_HOST ` [ \< string>] [ ] A host with MX records registered
880
- * ` SRV_HOST ` [ \< string>] [ ] A host with SRV records registered
881
- * ` PTR_HOST ` [ \< string>] [ ] A host with PTR records registered
882
- * ` NAPTR_HOST ` [ \< string>] [ ] A host with NAPTR records registered
883
- * ` SOA_HOST ` [ \< string>] [ ] A host with SOA records registered
884
- * ` CNAME_HOST ` [ \< string>] [ ] A host with CNAME records registered
885
- * ` NS_HOST ` [ \< string>] [ ] A host with NS records registered
886
- * ` TXT_HOST ` [ \< string>] [ ] A host with TXT records registered
887
- * ` DNS4_SERVER ` [ \< string>] [ ] An accessible IPv4 DNS server
888
- * ` DNS6_SERVER ` [ \< string>] [ ] An accessible IPv6 DNS server
880
+ * ` INVALID_HOST ` [ \< string>] [ <string> ] An invalid host that cannot be resolved
881
+ * ` MX_HOST ` [ \< string>] [ <string> ] A host with MX records registered
882
+ * ` SRV_HOST ` [ \< string>] [ <string> ] A host with SRV records registered
883
+ * ` PTR_HOST ` [ \< string>] [ <string> ] A host with PTR records registered
884
+ * ` NAPTR_HOST ` [ \< string>] [ <string> ] A host with NAPTR records registered
885
+ * ` SOA_HOST ` [ \< string>] [ <string> ] A host with SOA records registered
886
+ * ` CNAME_HOST ` [ \< string>] [ <string> ] A host with CNAME records registered
887
+ * ` NS_HOST ` [ \< string>] [ <string> ] A host with NS records registered
888
+ * ` TXT_HOST ` [ \< string>] [ <string> ] A host with TXT records registered
889
+ * ` DNS4_SERVER ` [ \< string>] [ <string> ] An accessible IPv4 DNS server
890
+ * ` DNS6_SERVER ` [ \< string>] [ <string> ] An accessible IPv6 DNS server
889
891
890
892
A set of addresses for internet-related tests. All properties are configurable
891
893
via ` NODE_TEST_* ` environment variables. For example, to configure
@@ -906,9 +908,9 @@ onGC({}, { ongc() { console.log('collected'); } });
906
908
907
909
### ` onGC(target, listener) `
908
910
909
- * ` target ` [ \< Object>] [ ]
910
- * ` listener ` [ \< Object>] [ ]
911
- * ` ongc ` [ \< Function>] [ ]
911
+ * ` target ` [ \< Object>] [ <Object> ]
912
+ * ` listener ` [ \< Object>] [ <Object> ]
913
+ * ` ongc ` [ \< Function>] [ <Function> ]
912
914
913
915
Installs a GC listener for the collection of ` target ` .
914
916
@@ -927,24 +929,25 @@ functionality.
927
929
928
930
### ` findReports(pid, dir) `
929
931
930
- * ` pid ` [ \< number>] [ ] Process ID to retrieve diagnostic report files for.
931
- * ` dir ` [ \< string>] [ ] Directory to search for diagnostic report files.
932
- * return [ \< Array>] [ ]
932
+ * ` pid ` [ \< number>] [ <number> ] Process ID to retrieve diagnostic report files
933
+ for.
934
+ * ` dir ` [ \< string>] [ <string> ] Directory to search for diagnostic report files.
935
+ * return [ \< Array>] [ <Array> ]
933
936
934
937
Returns an array of diagnostic report file names found in ` dir ` . The files
935
938
should have been generated by a process whose PID matches ` pid ` .
936
939
937
940
### ` validate(filepath) `
938
941
939
- * ` filepath ` [ \< string>] [ ] Diagnostic report filepath to validate.
942
+ * ` filepath ` [ \< string>] [ <string> ] Diagnostic report filepath to validate.
940
943
941
944
Validates the schema of a diagnostic report file whose path is specified in
942
945
` filepath ` . If the report fails validation, an exception is thrown.
943
946
944
947
### ` validateContent(report) `
945
948
946
- * ` report ` [ \< Object>] [ ] | [ \< string>] [ ] JSON contents of a diagnostic
947
- report file, the parsed Object thereof, or the result of
949
+ * ` report ` [ \< Object>] [ <Object> ] | [ \< string>] [ <string> ] JSON contents of a
950
+ diagnostic report file, the parsed Object thereof, or the result of
948
951
` process.report.getReport() ` .
949
952
950
953
Validates the schema of a diagnostic report whose content is specified in
@@ -957,16 +960,16 @@ after a given number of event loop "ticks".
957
960
958
961
### ` tick(x, cb) `
959
962
960
- * ` x ` [ \< number>] [ ] Number of event loop "ticks".
961
- * ` cb ` [ \< Function>] [ ] A callback function.
963
+ * ` x ` [ \< number>] [ <number> ] Number of event loop "ticks".
964
+ * ` cb ` [ \< Function>] [ <Function> ] A callback function.
962
965
963
966
## tmpdir Module
964
967
965
968
The ` tmpdir ` module supports the use of a temporary directory for testing.
966
969
967
970
### ` path `
968
971
969
- * [ \< string>] [ ]
972
+ * [ \< string>] [ <string> ]
970
973
971
974
The realpath of the testing temporary directory.
972
975
@@ -1015,18 +1018,18 @@ A driver class for running WPT with the WPT harness in a worker thread.
1015
1018
1016
1019
See [ the WPT tests README] [ ] for details.
1017
1020
1018
- [ \ < Array>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
1019
- [ \ < ArrayBufferView>] : https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView
1020
- [ \ < Buffer>] : https://nodejs.org/api/buffer.html#buffer_class_buffer
1021
- [ \ < BufferSource>] : https://developer.mozilla.org/en-US/docs/Web/API/BufferSource
1022
- [ \ < Error>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
1023
- [ \ < Function>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
1024
- [ \ < Object>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
1025
- [ \ < RegExp>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
1026
- [ \ < bigint>] : https://github.com/tc39/proposal-bigint
1027
- [ \ < boolean>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type
1028
- [ \ < number>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type
1029
- [ \ < string>] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type
1021
+ [ <Array> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
1022
+ [ <ArrayBufferView> ] : https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView
1023
+ [ <Buffer> ] : https://nodejs.org/api/buffer.html#buffer_class_buffer
1024
+ [ <BufferSource> ] : https://developer.mozilla.org/en-US/docs/Web/API/BufferSource
1025
+ [ <Error> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error
1026
+ [ <Function> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
1027
+ [ <Object> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
1028
+ [ <RegExp> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
1029
+ [ <bigint> ] : https://github.com/tc39/proposal-bigint
1030
+ [ <boolean> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type
1031
+ [ <number> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type
1032
+ [ <string> ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type
1030
1033
[ Web Platform Tests ] : https://github.com/web-platform-tests/wpt
1031
1034
[ `hijackstdio.hijackStdErr()` ] : #hijackstderrlistener
1032
1035
[ `hijackstdio.hijackStdOut()` ] : #hijackstdoutlistener
0 commit comments