Skip to content

Commit 3e58f9d

Browse files
committed
fix(@types/node): remedy compiler crash caused by assert.strict.AssertionError
1 parent 755e55a commit 3e58f9d

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

types/node/assert.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1068,6 +1068,7 @@ declare module "assert" {
10681068
| "deepStrictEqual"
10691069
| "ifError"
10701070
| "strict"
1071+
| "AssertionError"
10711072
>
10721073
& {
10731074
(value: unknown, message?: string | Error): asserts value;
@@ -1083,6 +1084,7 @@ declare module "assert" {
10831084
deepStrictEqual: typeof deepStrictEqual;
10841085
ifError: typeof ifError;
10851086
strict: typeof strict;
1087+
AssertionError: typeof AssertionError;
10861088
};
10871089
}
10881090
export = assert;

types/node/test/assert.ts

+6
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,9 @@ assert.partialDeepStrictEqual({ a: 1, b: 2, c: 3 }, { a: 1, b: 2 });
184184
assert.deepStrictEqual(a, { b: 2 });
185185
a; // $ExpectType { b: number; }
186186
}
187+
188+
// This is a regression test for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/71889.
189+
// Due to the nature of the bug this can't be switched to `import strict from "node:assert/strict";`
190+
// or to `import strict = require("node:assert/strict");`
191+
import { AssertionError } from "node:assert/strict";
192+
new AssertionError({ message: "some message" });

types/node/v20/assert.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,7 @@ declare module "assert" {
10151015
| "deepStrictEqual"
10161016
| "ifError"
10171017
| "strict"
1018+
| "AssertionError"
10181019
>
10191020
& {
10201021
(value: unknown, message?: string | Error): asserts value;
@@ -1030,6 +1031,7 @@ declare module "assert" {
10301031
deepStrictEqual: typeof deepStrictEqual;
10311032
ifError: typeof ifError;
10321033
strict: typeof strict;
1034+
AssertionError: typeof AssertionError;
10331035
};
10341036
}
10351037
export = assert;

types/node/v20/test/assert.ts

+6
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,9 @@ assert["fail"](true, true, "works like a charm");
182182
assert.deepStrictEqual(a, { b: 2 });
183183
a; // $ExpectType { b: number; }
184184
}
185+
186+
// This is a regression test for https://github.com/DefinitelyTyped/DefinitelyTyped/pull/71889.
187+
// Due to the nature of the bug this can't be switched to `import strict from "node:assert/strict";`
188+
// or to `import strict = require("node:assert/strict");`
189+
import { AssertionError } from "node:assert/strict";
190+
new AssertionError({ message: "some message" });

0 commit comments

Comments
 (0)