cdk-ecr-deployment 3.0.77 → 3.0.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/.jsii +2 -2
  2. package/.jsii.tabl.json +1 -1
  3. package/lib/index.js +3 -3
  4. package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
  5. package/node_modules/@types/cacheable-request/node_modules/@types/node/dns.d.ts +2 -1
  6. package/node_modules/@types/cacheable-request/node_modules/@types/node/fs/promises.d.ts +1 -12
  7. package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +4 -32
  8. package/node_modules/@types/cacheable-request/node_modules/@types/node/globals.d.ts +5 -0
  9. package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +3 -3
  10. package/node_modules/@types/cacheable-request/node_modules/@types/node/test.d.ts +102 -89
  11. package/node_modules/@types/cacheable-request/node_modules/@types/node/url.d.ts +18 -1
  12. package/node_modules/@types/cacheable-request/node_modules/undici-types/dispatcher.d.ts +1 -1
  13. package/node_modules/@types/cacheable-request/node_modules/undici-types/fetch.d.ts +1 -1
  14. package/node_modules/@types/cacheable-request/node_modules/undici-types/package.json +1 -1
  15. package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
  16. package/node_modules/@types/keyv/node_modules/@types/node/dns.d.ts +2 -1
  17. package/node_modules/@types/keyv/node_modules/@types/node/fs/promises.d.ts +1 -12
  18. package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +4 -32
  19. package/node_modules/@types/keyv/node_modules/@types/node/globals.d.ts +5 -0
  20. package/node_modules/@types/keyv/node_modules/@types/node/package.json +3 -3
  21. package/node_modules/@types/keyv/node_modules/@types/node/test.d.ts +102 -89
  22. package/node_modules/@types/keyv/node_modules/@types/node/url.d.ts +18 -1
  23. package/node_modules/@types/keyv/node_modules/undici-types/dispatcher.d.ts +1 -1
  24. package/node_modules/@types/keyv/node_modules/undici-types/fetch.d.ts +1 -1
  25. package/node_modules/@types/keyv/node_modules/undici-types/package.json +1 -1
  26. package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
  27. package/node_modules/@types/responselike/node_modules/@types/node/dns.d.ts +2 -1
  28. package/node_modules/@types/responselike/node_modules/@types/node/fs/promises.d.ts +1 -12
  29. package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +4 -32
  30. package/node_modules/@types/responselike/node_modules/@types/node/globals.d.ts +5 -0
  31. package/node_modules/@types/responselike/node_modules/@types/node/package.json +3 -3
  32. package/node_modules/@types/responselike/node_modules/@types/node/test.d.ts +102 -89
  33. package/node_modules/@types/responselike/node_modules/@types/node/url.d.ts +18 -1
  34. package/node_modules/@types/responselike/node_modules/undici-types/dispatcher.d.ts +1 -1
  35. package/node_modules/@types/responselike/node_modules/undici-types/fetch.d.ts +1 -1
  36. package/node_modules/@types/responselike/node_modules/undici-types/package.json +1 -1
  37. package/package.json +3 -3
@@ -80,7 +80,6 @@
80
80
  */
81
81
  declare module "node:test" {
82
82
  import { Readable } from "node:stream";
83
- import { AsyncResource } from "node:async_hooks";
84
83
  /**
85
84
  * **Note:** `shard` is used to horizontally parallelize test running across
86
85
  * machines or processes, ideal for large-scale executions across varied
@@ -98,7 +97,7 @@ declare module "node:test" {
98
97
  * .pipe(process.stdout);
99
98
  * ```
100
99
  * @since v18.9.0, v16.19.0
101
- * @param options Configuration options for running tests. The following properties are supported:
100
+ * @param options Configuration options for running tests.
102
101
  */
103
102
  function run(options?: RunOptions): TestsStream;
104
103
  /**
@@ -133,10 +132,11 @@ declare module "node:test" {
133
132
  * canceling tests because a running test might block the application thread and
134
133
  * thus prevent the scheduled cancellation.
135
134
  * @since v18.0.0, v16.17.0
136
- * @param [name='The name'] The name of the test, which is displayed when reporting test results.
137
- * @param options Configuration options for the test. The following properties are supported:
138
- * @param [fn='A no-op function'] The function under test. The first argument to this function is a {@link TestContext} object. If the test uses callbacks, the
139
- * callback function is passed as the second argument.
135
+ * @param name The name of the test, which is displayed when reporting test results.
136
+ * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.
137
+ * @param options Configuration options for the test.
138
+ * @param fn The function under test. The first argument to this function is a {@link TestContext} object.
139
+ * If the test uses callbacks, the callback function is passed as the second argument.
140
140
  * @return Fulfilled with `undefined` once the test completes, or immediately if the test runs within a suite.
141
141
  */
142
142
  function test(name?: string, fn?: TestFn): Promise<void>;
@@ -148,9 +148,10 @@ declare module "node:test" {
148
148
  }
149
149
  /**
150
150
  * The `suite()` function is imported from the `node:test` module.
151
- * @param name The name of the suite, which is displayed when reporting test results. **Default:** The `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.
152
- * @param options Optional configuration options for the suite. This supports the same options as `test([name][, options][, fn])`.
153
- * @param [fn='A no-op function'] The suite function declaring nested tests and suites. The first argument to this function is a `{@link SuiteContext}` object.
151
+ * @param name The name of the suite, which is displayed when reporting test results.
152
+ * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.
153
+ * @param options Configuration options for the suite. This supports the same options as {@link test}.
154
+ * @param fn The suite function declaring nested tests and suites. The first argument to this function is a {@link SuiteContext} object.
154
155
  * @return Immediately fulfilled with `undefined`.
155
156
  * @since v20.13.0
156
157
  */
@@ -160,7 +161,7 @@ declare module "node:test" {
160
161
  function suite(fn?: SuiteFn): Promise<void>;
161
162
  namespace suite {
162
163
  /**
163
- * Shorthand for skipping a suite. This is the same as [`suite([name], { skip: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#suitename-options-fn).
164
+ * Shorthand for skipping a suite. This is the same as calling {@link suite} with `options.skip` set to `true`.
164
165
  * @since v20.13.0
165
166
  */
166
167
  function skip(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -168,7 +169,7 @@ declare module "node:test" {
168
169
  function skip(options?: TestOptions, fn?: SuiteFn): Promise<void>;
169
170
  function skip(fn?: SuiteFn): Promise<void>;
170
171
  /**
171
- * Shorthand for marking a suite as `TODO`. This is the same as [`suite([name], { todo: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#suitename-options-fn).
172
+ * Shorthand for marking a suite as `TODO`. This is the same as calling {@link suite} with `options.todo` set to `true`.
172
173
  * @since v20.13.0
173
174
  */
174
175
  function todo(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -176,7 +177,7 @@ declare module "node:test" {
176
177
  function todo(options?: TestOptions, fn?: SuiteFn): Promise<void>;
177
178
  function todo(fn?: SuiteFn): Promise<void>;
178
179
  /**
179
- * Shorthand for marking a suite as `only`. This is the same as [`suite([name], { only: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#suitename-options-fn).
180
+ * Shorthand for marking a suite as `only`. This is the same as calling {@link suite} with `options.only` set to `true`.
180
181
  * @since v20.13.0
181
182
  */
182
183
  function only(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -185,7 +186,7 @@ declare module "node:test" {
185
186
  function only(fn?: SuiteFn): Promise<void>;
186
187
  }
187
188
  /**
188
- * Alias for `{@link suite}`.
189
+ * Alias for {@link suite}.
189
190
  *
190
191
  * The `describe()` function is imported from the `node:test` module.
191
192
  */
@@ -195,7 +196,7 @@ declare module "node:test" {
195
196
  function describe(fn?: SuiteFn): Promise<void>;
196
197
  namespace describe {
197
198
  /**
198
- * Shorthand for skipping a suite. This is the same as [`describe([name], { skip: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#describename-options-fn).
199
+ * Shorthand for skipping a suite. This is the same as calling {@link describe} with `options.skip` set to `true`.
199
200
  * @since v18.15.0
200
201
  */
201
202
  function skip(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -203,7 +204,7 @@ declare module "node:test" {
203
204
  function skip(options?: TestOptions, fn?: SuiteFn): Promise<void>;
204
205
  function skip(fn?: SuiteFn): Promise<void>;
205
206
  /**
206
- * Shorthand for marking a suite as `TODO`. This is the same as [`describe([name], { todo: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#describename-options-fn).
207
+ * Shorthand for marking a suite as `TODO`. This is the same as calling {@link describe} with `options.todo` set to `true`.
207
208
  * @since v18.15.0
208
209
  */
209
210
  function todo(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -211,7 +212,7 @@ declare module "node:test" {
211
212
  function todo(options?: TestOptions, fn?: SuiteFn): Promise<void>;
212
213
  function todo(fn?: SuiteFn): Promise<void>;
213
214
  /**
214
- * Shorthand for marking a suite as `only`. This is the same as [`describe([name], { only: true }[, fn])`](https://nodejs.org/docs/latest-v22.x/api/test.html#describename-options-fn).
215
+ * Shorthand for marking a suite as `only`. This is the same as calling {@link describe} with `options.only` set to `true`.
215
216
  * @since v18.15.0
216
217
  */
217
218
  function only(name?: string, options?: TestOptions, fn?: SuiteFn): Promise<void>;
@@ -220,7 +221,7 @@ declare module "node:test" {
220
221
  function only(fn?: SuiteFn): Promise<void>;
221
222
  }
222
223
  /**
223
- * Alias for `test()`.
224
+ * Alias for {@link test}.
224
225
  *
225
226
  * The `it()` function is imported from the `node:test` module.
226
227
  * @since v18.6.0, v16.17.0
@@ -231,21 +232,21 @@ declare module "node:test" {
231
232
  function it(fn?: TestFn): Promise<void>;
232
233
  namespace it {
233
234
  /**
234
- * Shorthand for skipping a test, same as `it([name], { skip: true }[, fn])`.
235
+ * Shorthand for skipping a test. This is the same as calling {@link it} with `options.skip` set to `true`.
235
236
  */
236
237
  function skip(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
237
238
  function skip(name?: string, fn?: TestFn): Promise<void>;
238
239
  function skip(options?: TestOptions, fn?: TestFn): Promise<void>;
239
240
  function skip(fn?: TestFn): Promise<void>;
240
241
  /**
241
- * Shorthand for marking a test as `TODO`, same as `it([name], { todo: true }[, fn])`.
242
+ * Shorthand for marking a test as `TODO`. This is the same as calling {@link it} with `options.todo` set to `true`.
242
243
  */
243
244
  function todo(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
244
245
  function todo(name?: string, fn?: TestFn): Promise<void>;
245
246
  function todo(options?: TestOptions, fn?: TestFn): Promise<void>;
246
247
  function todo(fn?: TestFn): Promise<void>;
247
248
  /**
248
- * Shorthand for marking a test as `only`, same as `it([name], { only: true }[, fn])`.
249
+ * Shorthand for marking a test as `only`. This is the same as calling {@link it} with `options.only` set to `true`.
249
250
  * @since v18.15.0
250
251
  */
251
252
  function only(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
@@ -254,7 +255,7 @@ declare module "node:test" {
254
255
  function only(fn?: TestFn): Promise<void>;
255
256
  }
256
257
  /**
257
- * Shorthand for skipping a test, same as `test([name], { skip: true }[, fn])`.
258
+ * Shorthand for skipping a test. This is the same as calling {@link test} with `options.skip` set to `true`.
258
259
  * @since v20.2.0
259
260
  */
260
261
  function skip(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
@@ -262,7 +263,7 @@ declare module "node:test" {
262
263
  function skip(options?: TestOptions, fn?: TestFn): Promise<void>;
263
264
  function skip(fn?: TestFn): Promise<void>;
264
265
  /**
265
- * Shorthand for marking a test as `TODO`, same as `test([name], { todo: true }[, fn])`.
266
+ * Shorthand for marking a test as `TODO`. This is the same as calling {@link test} with `options.todo` set to `true`.
266
267
  * @since v20.2.0
267
268
  */
268
269
  function todo(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
@@ -270,7 +271,7 @@ declare module "node:test" {
270
271
  function todo(options?: TestOptions, fn?: TestFn): Promise<void>;
271
272
  function todo(fn?: TestFn): Promise<void>;
272
273
  /**
273
- * Shorthand for marking a test as `only`, same as `test([name], { only: true }[, fn])`.
274
+ * Shorthand for marking a test as `only`. This is the same as calling {@link test} with `options.only` set to `true`.
274
275
  * @since v20.2.0
275
276
  */
276
277
  function only(name?: string, options?: TestOptions, fn?: TestFn): Promise<void>;
@@ -278,18 +279,17 @@ declare module "node:test" {
278
279
  function only(options?: TestOptions, fn?: TestFn): Promise<void>;
279
280
  function only(fn?: TestFn): Promise<void>;
280
281
  /**
281
- * The type of a function under test. The first argument to this function is a
282
- * {@link TestContext} object. If the test uses callbacks, the callback function is passed as
283
- * the second argument.
282
+ * The type of a function passed to {@link test}. The first argument to this function is a {@link TestContext} object.
283
+ * If the test uses callbacks, the callback function is passed as the second argument.
284
284
  */
285
285
  type TestFn = (t: TestContext, done: (result?: any) => void) => void | Promise<void>;
286
286
  /**
287
- * The type of a function under Suite.
287
+ * The type of a suite test function. The argument to this function is a {@link SuiteContext} object.
288
288
  */
289
289
  type SuiteFn = (s: SuiteContext) => void | Promise<void>;
290
290
  interface TestShard {
291
291
  /**
292
- * A positive integer between 1 and `<total>` that specifies the index of the shard to run.
292
+ * A positive integer between 1 and `total` that specifies the index of the shard to run.
293
293
  */
294
294
  index: number;
295
295
  /**
@@ -305,7 +305,7 @@ declare module "node:test" {
305
305
  */
306
306
  concurrency?: number | boolean | undefined;
307
307
  /**
308
- * An array containing the list of files to run. **Default** matching files from
308
+ * An array containing the list of files to run. If omitted, files are run according to the
309
309
  * [test runner execution model](https://nodejs.org/docs/latest-v22.x/api/test.html#test-runner-execution-model).
310
310
  */
311
311
  files?: readonly string[] | undefined;
@@ -326,26 +326,33 @@ declare module "node:test" {
326
326
  /**
327
327
  * If truthy, the test context will only run tests that have the `only` option set
328
328
  */
329
- only?: boolean;
329
+ only?: boolean | undefined;
330
330
  /**
331
331
  * A function that accepts the `TestsStream` instance and can be used to setup listeners before any tests are run.
332
332
  * @default undefined
333
333
  */
334
- setup?: (root: Test) => void | Promise<void>;
334
+ setup?: ((reporter: TestsStream) => void | Promise<void>) | undefined;
335
335
  /**
336
336
  * Allows aborting an in-progress test execution.
337
337
  */
338
338
  signal?: AbortSignal | undefined;
339
339
  /**
340
- * A String, RegExp or a RegExp Array, that can be used to only run tests whose
340
+ * If provided, only run tests whose name matches the provided pattern.
341
+ * Strings are interpreted as JavaScript regular expressions.
342
+ * @default undefined
343
+ */
344
+ testNamePatterns?: string | RegExp | ReadonlyArray<string | RegExp> | undefined;
345
+ /**
346
+ * A String, RegExp or a RegExp Array, that can be used to exclude running tests whose
341
347
  * name matches the provided pattern. Test name patterns are interpreted as JavaScript
342
348
  * regular expressions. For each test that is executed, any corresponding test hooks,
343
349
  * such as `beforeEach()`, are also run.
344
350
  * @default undefined
351
+ * @since v22.1.0
345
352
  */
346
- testNamePatterns?: string | RegExp | string[] | RegExp[];
353
+ testSkipPatterns?: string | RegExp | ReadonlyArray<string | RegExp> | undefined;
347
354
  /**
348
- * A number of milliseconds the test execution will fail after.
355
+ * The number of milliseconds after which the test execution will fail.
349
356
  * If unspecified, subtests inherit this value from their parent.
350
357
  * @default Infinity
351
358
  */
@@ -361,18 +368,8 @@ declare module "node:test" {
361
368
  */
362
369
  shard?: TestShard | undefined;
363
370
  }
364
- class Test extends AsyncResource {
365
- concurrency: number;
366
- nesting: number;
367
- only: boolean;
368
- reporter: TestsStream;
369
- runOnlySubtests: boolean;
370
- testNumber: number;
371
- timeout: number | null;
372
- }
373
371
  /**
374
- * A successful call to `run()` method will return a new `TestsStream` object, streaming a series of events representing the execution of the tests. `TestsStream` will emit events, in the
375
- * order of the tests definition
372
+ * A successful call to `run()` will return a new `TestsStream` object, streaming a series of events representing the execution of the tests.
376
373
  *
377
374
  * Some of the events are guaranteed to be emitted in the same order as the tests are defined, while others are emitted in the order that the tests execute.
378
375
  * @since v18.9.0, v16.19.0
@@ -389,6 +386,7 @@ declare module "node:test" {
389
386
  addListener(event: "test:start", listener: (data: TestStart) => void): this;
390
387
  addListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
391
388
  addListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
389
+ addListener(event: "test:watch:drained", listener: () => void): this;
392
390
  addListener(event: string, listener: (...args: any[]) => void): this;
393
391
  emit(event: "test:coverage", data: TestCoverage): boolean;
394
392
  emit(event: "test:complete", data: TestComplete): boolean;
@@ -401,6 +399,7 @@ declare module "node:test" {
401
399
  emit(event: "test:start", data: TestStart): boolean;
402
400
  emit(event: "test:stderr", data: TestStderr): boolean;
403
401
  emit(event: "test:stdout", data: TestStdout): boolean;
402
+ emit(event: "test:watch:drained"): boolean;
404
403
  emit(event: string | symbol, ...args: any[]): boolean;
405
404
  on(event: "test:coverage", listener: (data: TestCoverage) => void): this;
406
405
  on(event: "test:complete", listener: (data: TestComplete) => void): this;
@@ -413,6 +412,7 @@ declare module "node:test" {
413
412
  on(event: "test:start", listener: (data: TestStart) => void): this;
414
413
  on(event: "test:stderr", listener: (data: TestStderr) => void): this;
415
414
  on(event: "test:stdout", listener: (data: TestStdout) => void): this;
415
+ on(event: "test:watch:drained", listener: () => void): this;
416
416
  on(event: string, listener: (...args: any[]) => void): this;
417
417
  once(event: "test:coverage", listener: (data: TestCoverage) => void): this;
418
418
  once(event: "test:complete", listener: (data: TestComplete) => void): this;
@@ -425,6 +425,7 @@ declare module "node:test" {
425
425
  once(event: "test:start", listener: (data: TestStart) => void): this;
426
426
  once(event: "test:stderr", listener: (data: TestStderr) => void): this;
427
427
  once(event: "test:stdout", listener: (data: TestStdout) => void): this;
428
+ once(event: "test:watch:drained", listener: () => void): this;
428
429
  once(event: string, listener: (...args: any[]) => void): this;
429
430
  prependListener(event: "test:coverage", listener: (data: TestCoverage) => void): this;
430
431
  prependListener(event: "test:complete", listener: (data: TestComplete) => void): this;
@@ -437,6 +438,7 @@ declare module "node:test" {
437
438
  prependListener(event: "test:start", listener: (data: TestStart) => void): this;
438
439
  prependListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
439
440
  prependListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
441
+ prependListener(event: "test:watch:drained", listener: () => void): this;
440
442
  prependListener(event: string, listener: (...args: any[]) => void): this;
441
443
  prependOnceListener(event: "test:coverage", listener: (data: TestCoverage) => void): this;
442
444
  prependOnceListener(event: "test:complete", listener: (data: TestComplete) => void): this;
@@ -449,6 +451,7 @@ declare module "node:test" {
449
451
  prependOnceListener(event: "test:start", listener: (data: TestStart) => void): this;
450
452
  prependOnceListener(event: "test:stderr", listener: (data: TestStderr) => void): this;
451
453
  prependOnceListener(event: "test:stdout", listener: (data: TestStdout) => void): this;
454
+ prependOnceListener(event: "test:watch:drained", listener: () => void): this;
452
455
  prependOnceListener(event: string, listener: (...args: any[]) => void): this;
453
456
  }
454
457
  /**
@@ -460,32 +463,28 @@ declare module "node:test" {
460
463
  class TestContext {
461
464
  /**
462
465
  * This function is used to create a hook running before subtest of the current test.
463
- * @param fn The hook function. If the hook uses callbacks, the callback function is passed as
464
- * the second argument. **Default:** A no-op function.
466
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
465
467
  * @param options Configuration options for the hook.
466
468
  * @since v20.1.0
467
469
  */
468
470
  before: typeof before;
469
471
  /**
470
472
  * This function is used to create a hook running before each subtest of the current test.
471
- * @param fn The hook function. If the hook uses callbacks, the callback function is passed as
472
- * the second argument. **Default:** A no-op function.
473
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
473
474
  * @param options Configuration options for the hook.
474
475
  * @since v18.8.0
475
476
  */
476
477
  beforeEach: typeof beforeEach;
477
478
  /**
478
479
  * This function is used to create a hook that runs after the current test finishes.
479
- * @param [fn='A no-op function'] The hook function. If the hook uses callbacks, the callback function is passed as
480
- * the second argument. Default: A no-op function.
480
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
481
481
  * @param options Configuration options for the hook.
482
482
  * @since v18.13.0
483
483
  */
484
484
  after: typeof after;
485
485
  /**
486
486
  * This function is used to create a hook running after each subtest of the current test.
487
- * @param fn The hook function. If the hook uses callbacks, the callback function is passed as
488
- * the second argument. **Default:** A no-op function.
487
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
489
488
  * @param options Configuration options for the hook.
490
489
  * @since v18.8.0
491
490
  */
@@ -573,11 +572,10 @@ declare module "node:test" {
573
572
  * the same fashion as the top level {@link test} function.
574
573
  * @since v18.0.0
575
574
  * @param name The name of the test, which is displayed when reporting test results.
576
- * Default: The `name` property of fn, or `'<anonymous>'` if `fn` does not have a name.
577
- * @param options Configuration options for the test
578
- * @param fn The function under test. This first argument to this function is a
579
- * {@link TestContext} object. If the test uses callbacks, the callback function is
580
- * passed as the second argument. **Default:** A no-op function.
575
+ * Defaults to the `name` property of `fn`, or `'<anonymous>'` if `fn` does not have a name.
576
+ * @param options Configuration options for the test.
577
+ * @param fn The function under test. This first argument to this function is a {@link TestContext} object.
578
+ * If the test uses callbacks, the callback function is passed as the second argument.
581
579
  * @returns A {@link Promise} resolved with `undefined` once the test completes.
582
580
  */
583
581
  test: typeof test;
@@ -658,8 +656,8 @@ declare module "node:test" {
658
656
  * });
659
657
  * ```
660
658
  * @since v18.8.0, v16.18.0
661
- * @param [fn='A no-op function'] The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
662
- * @param options Configuration options for the hook. The following properties are supported:
659
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
660
+ * @param options Configuration options for the hook.
663
661
  */
664
662
  function before(fn?: HookFn, options?: HookOptions): void;
665
663
  /**
@@ -674,8 +672,8 @@ declare module "node:test" {
674
672
  * });
675
673
  * ```
676
674
  * @since v18.8.0, v16.18.0
677
- * @param [fn='A no-op function'] The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
678
- * @param options Configuration options for the hook. The following properties are supported:
675
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
676
+ * @param options Configuration options for the hook.
679
677
  */
680
678
  function after(fn?: HookFn, options?: HookOptions): void;
681
679
  /**
@@ -690,8 +688,8 @@ declare module "node:test" {
690
688
  * });
691
689
  * ```
692
690
  * @since v18.8.0, v16.18.0
693
- * @param [fn='A no-op function'] The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
694
- * @param options Configuration options for the hook. The following properties are supported:
691
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
692
+ * @param options Configuration options for the hook.
695
693
  */
696
694
  function beforeEach(fn?: HookFn, options?: HookOptions): void;
697
695
  /**
@@ -707,8 +705,8 @@ declare module "node:test" {
707
705
  * });
708
706
  * ```
709
707
  * @since v18.8.0, v16.18.0
710
- * @param [fn='A no-op function'] The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
711
- * @param options Configuration options for the hook. The following properties are supported:
708
+ * @param fn The hook function. If the hook uses callbacks, the callback function is passed as the second argument.
709
+ * @param options Configuration options for the hook.
712
710
  */
713
711
  function afterEach(fn?: HookFn, options?: HookOptions): void;
714
712
  /**
@@ -798,10 +796,10 @@ declare module "node:test" {
798
796
  * });
799
797
  * ```
800
798
  * @since v19.1.0, v18.13.0
801
- * @param [original='A no-op function'] An optional function to create a mock on.
799
+ * @param original An optional function to create a mock on.
802
800
  * @param implementation An optional function used as the mock implementation for `original`. This is useful for creating mocks that exhibit one behavior for a specified number of calls and
803
801
  * then restore the behavior of `original`.
804
- * @param options Optional configuration options for the mock function. The following properties are supported:
802
+ * @param options Optional configuration options for the mock function.
805
803
  * @return The mocked function. The mocked function contains a special `mock` property, which is an instance of {@link MockFunctionContext}, and can be used for inspecting and changing the
806
804
  * behavior of the mocked function.
807
805
  */
@@ -843,7 +841,7 @@ declare module "node:test" {
843
841
  * @param object The object whose method is being mocked.
844
842
  * @param methodName The identifier of the method on `object` to mock. If `object[methodName]` is not a function, an error is thrown.
845
843
  * @param implementation An optional function used as the mock implementation for `object[methodName]`.
846
- * @param options Optional configuration options for the mock method. The following properties are supported:
844
+ * @param options Optional configuration options for the mock method.
847
845
  * @return The mocked method. The mocked method contains a special `mock` property, which is an instance of {@link MockFunctionContext}, and can be used for inspecting and changing the
848
846
  * behavior of the mocked method.
849
847
  */
@@ -923,6 +921,7 @@ declare module "node:test" {
923
921
  implementation?: Implementation,
924
922
  options?: MockFunctionOptions,
925
923
  ): Mock<((value: MockedObject[MethodName]) => void) | Implementation>;
924
+
926
925
  /**
927
926
  * This function restores the default behavior of all mocks that were previously
928
927
  * created by this `MockTracker` and disassociates the mocks from the `MockTracker` instance. Once disassociated, the mocks can still be used, but the `MockTracker` instance can no longer be
@@ -941,17 +940,7 @@ declare module "node:test" {
941
940
  * @since v19.1.0, v18.13.0
942
941
  */
943
942
  restoreAll(): void;
944
- /**
945
- * This function is used to mock the exports of ECMAScript modules,
946
- * CommonJS modules, and Node.js builtin modules. Any references to
947
- * the original module prior to mocking are not impacted
948
- * @since v22.3.0
949
- */
950
- module(speficier: string, options?: {
951
- cache?: boolean;
952
- defaultExport?: any;
953
- namedExports?: object;
954
- }): { restore: () => void };
943
+
955
944
  timers: MockTimers;
956
945
  }
957
946
  const mock: MockTracker;
@@ -1092,11 +1081,11 @@ declare module "node:test" {
1092
1081
  */
1093
1082
  restore(): void;
1094
1083
  }
1095
- type Timer = "setInterval" | "setTimeout" | "setImmediate" | "Date";
1096
1084
 
1085
+ type Timer = "setInterval" | "setTimeout" | "setImmediate" | "Date";
1097
1086
  interface MockTimersOptions {
1098
1087
  apis: Timer[];
1099
- now?: number | Date;
1088
+ now?: number | Date | undefined;
1100
1089
  }
1101
1090
  /**
1102
1091
  * Mocking timers is a technique commonly used in software testing to simulate and
@@ -1335,6 +1324,9 @@ declare module "node:test" {
1335
1324
  };
1336
1325
  }
1337
1326
 
1327
+ interface TestError extends Error {
1328
+ cause: Error;
1329
+ }
1338
1330
  interface TestLocationInfo {
1339
1331
  /**
1340
1332
  * The column number where the test is defined, or
@@ -1366,7 +1358,7 @@ interface TestCoverage {
1366
1358
  */
1367
1359
  summary: {
1368
1360
  /**
1369
- * An array of coverage reports for individual files. Each report is an object with the following schema:
1361
+ * An array of coverage reports for individual files.
1370
1362
  */
1371
1363
  files: Array<{
1372
1364
  /**
@@ -1426,6 +1418,19 @@ interface TestCoverage {
1426
1418
  */
1427
1419
  count: number;
1428
1420
  }>;
1421
+ /**
1422
+ * An array of branches representing branch coverage.
1423
+ */
1424
+ branches: Array<{
1425
+ /**
1426
+ * The line number where the branch is defined.
1427
+ */
1428
+ line: number;
1429
+ /**
1430
+ * The number of times the branch was taken.
1431
+ */
1432
+ count: number;
1433
+ }>;
1429
1434
  /**
1430
1435
  * An array of lines representing line numbers and the number of times they were covered.
1431
1436
  */
@@ -1509,7 +1514,7 @@ interface TestComplete extends TestLocationInfo {
1509
1514
  /**
1510
1515
  * An error wrapping the error thrown by the test if it did not pass.
1511
1516
  */
1512
- error: Error;
1517
+ error?: TestError;
1513
1518
  /**
1514
1519
  * The type of the test, used to denote whether this is a suite.
1515
1520
  */
@@ -1566,9 +1571,9 @@ interface TestFail extends TestLocationInfo {
1566
1571
  */
1567
1572
  duration_ms: number;
1568
1573
  /**
1569
- * An error wrapping the error thrown by the test if it did not pass.
1574
+ * An error wrapping the error thrown by the test.
1570
1575
  */
1571
- error: Error;
1576
+ error: TestError;
1572
1577
  /**
1573
1578
  * The type of the test, used to denote whether this is a suite.
1574
1579
  * @since v20.0.0, v19.9.0, v18.17.0
@@ -1652,13 +1657,21 @@ interface TestStart extends TestLocationInfo {
1652
1657
  */
1653
1658
  nesting: number;
1654
1659
  }
1655
- interface TestStderr extends TestLocationInfo {
1660
+ interface TestStderr {
1661
+ /**
1662
+ * The path of the test file.
1663
+ */
1664
+ file: string;
1656
1665
  /**
1657
1666
  * The message written to `stderr`.
1658
1667
  */
1659
1668
  message: string;
1660
1669
  }
1661
- interface TestStdout extends TestLocationInfo {
1670
+ interface TestStdout {
1671
+ /**
1672
+ * The path of the test file.
1673
+ */
1674
+ file: string;
1662
1675
  /**
1663
1676
  * The message written to `stdout`.
1664
1677
  */
@@ -1697,7 +1710,7 @@ declare module "node:test/reporters" {
1697
1710
  | { type: "test:start"; data: TestStart }
1698
1711
  | { type: "test:stderr"; data: TestStderr }
1699
1712
  | { type: "test:stdout"; data: TestStdout }
1700
- | { type: "test:watch:drained" };
1713
+ | { type: "test:watch:drained"; data: undefined };
1701
1714
  type TestEventGenerator = AsyncGenerator<TestEvent, void>;
1702
1715
 
1703
1716
  /**
@@ -50,10 +50,18 @@ declare module "url" {
50
50
  /**
51
51
  * `true` if the `path` should be return as a windows filepath, `false` for posix, and `undefined` for the system default.
52
52
  * @default undefined
53
+ * @since v22.1.0
54
+ */
55
+ windows?: boolean | undefined;
56
+ }
57
+ interface PathToFileUrlOptions {
58
+ /**
59
+ * `true` if the `path` should be return as a windows filepath, `false` for posix, and `undefined` for the system default.
60
+ * @default undefined
61
+ * @since v22.1.0
53
62
  */
54
63
  windows?: boolean | undefined;
55
64
  }
56
- interface PathToFileUrlOptions extends FileUrlToPathOptions {}
57
65
  /**
58
66
  * The `url.parse()` method takes a URL string, parses it, and returns a URL
59
67
  * object.
@@ -437,6 +445,15 @@ declare module "url" {
437
445
  * @param base The base URL to resolve against if the `input` is not absolute. If `base` is not a string, it is `converted to a string` first.
438
446
  */
439
447
  static canParse(input: string, base?: string): boolean;
448
+ /**
449
+ * Parses a string as a URL. If `base` is provided, it will be used as the base URL for the purpose of resolving non-absolute `input` URLs.
450
+ * Returns `null` if `input` is not a valid.
451
+ * @param input The absolute or relative input URL to parse. If `input` is relative, then `base` is required. If `input` is absolute, the `base` is ignored. If `input` is not a string, it is
452
+ * `converted to a string` first.
453
+ * @param base The base URL to resolve against if the `input` is not absolute. If `base` is not a string, it is `converted to a string` first.
454
+ * @since v22.1.0
455
+ */
456
+ static parse(input: string, base?: string): URL | null;
440
457
  constructor(input: string | { toString: () => string }, base?: string | URL);
441
458
  /**
442
459
  * Gets and sets the fragment portion of the URL.
@@ -225,7 +225,7 @@ declare namespace Dispatcher {
225
225
  /** Invoked when response is received, before headers have been read. **/
226
226
  onResponseStarted?(): void;
227
227
  /** Invoked when statusCode and headers have been received. May be invoked multiple times due to 1xx informational headers. */
228
- onHeaders?(statusCode: number, headers: Buffer[] | string[] | null, resume: () => void, statusText: string): boolean;
228
+ onHeaders?(statusCode: number, headers: Buffer[], resume: () => void, statusText: string): boolean;
229
229
  /** Invoked when response payload data is received. */
230
230
  onData?(chunk: Buffer): boolean;
231
231
  /** Invoked when response payload and trailers have been received and the request has completed. */
@@ -163,7 +163,7 @@ export declare class Request extends BodyMixin {
163
163
  readonly method: string
164
164
  readonly mode: RequestMode
165
165
  readonly redirect: RequestRedirect
166
- readonly referrerPolicy: string
166
+ readonly referrerPolicy: ReferrerPolicy
167
167
  readonly url: string
168
168
 
169
169
  readonly keepalive: boolean
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici-types",
3
- "version": "6.11.1",
3
+ "version": "6.13.0",
4
4
  "description": "A stand-alone types package for Undici",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Sun, 28 Jul 2024 10:07:16 GMT
11
+ * Last updated: Fri, 02 Aug 2024 11:07:10 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -86,14 +86,15 @@ declare module "dns" {
86
86
  * addresses before IPv4 addresses. Default value is configurable using
87
87
  * {@link setDefaultResultOrder} or [`--dns-result-order`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--dns-result-orderorder).
88
88
  * @default `verbatim` (addresses are not reordered)
89
+ * @since v22.1.0
89
90
  */
90
91
  order?: "ipv4first" | "ipv6first" | "verbatim" | undefined;
91
92
  /**
92
93
  * When `true`, the callback receives IPv4 and IPv6 addresses in the order the DNS resolver returned them. When `false`, IPv4
93
94
  * addresses are placed before IPv6 addresses. This option will be deprecated in favor of `order`. When both are specified,
94
95
  * `order` has higher precedence. New code should only use `order`. Default value is configurable using {@link setDefaultResultOrder}
95
- * or [`--dns-result-order`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--dns-result-orderorder).
96
96
  * @default true (addresses are not reordered)
97
+ * @deprecated Please use `order` option
97
98
  */
98
99
  verbatim?: boolean | undefined;
99
100
  }