Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e182ca9

Browse filesBrowse files
BridgeARtargos
authored andcommitted
test: add more inspect subclassing tests
So far we do not test all data types for subclasses and this extends the existing tests for WeakSet, WeakMap and BigInt64Array. PR-URL: #25192 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 73f3a1c commit e182ca9
Copy full SHA for e182ca9

File tree

Expand file treeCollapse file tree

1 file changed

+4
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-1
lines changed
Open diff view settings
Collapse file

‎test/parallel/test-util-inspect.js‎

Copy file name to clipboardExpand all lines: test/parallel/test-util-inspect.js
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,10 @@ assert.strictEqual(util.inspect('"\'${a}'), "'\"\\'${a}'");
16621662

16631663
// Verify that subclasses with and without prototype produce nice results.
16641664
[
1665-
[RegExp, ['foobar', 'g'], '/foobar/g']
1665+
[RegExp, ['foobar', 'g'], '/foobar/g'],
1666+
[WeakSet, [[{}]], '{ <items unknown> }'],
1667+
[WeakMap, [[[{}, {}]]], '{ <items unknown> }'],
1668+
[BigInt64Array, [10], '[ 0n, 0n, 0n, 0n, 0n, 0n, 0n, 0n, 0n, 0n ]']
16661669
].forEach(([base, input, rawExpected]) => {
16671670
class Foo extends base {}
16681671
const value = new Foo(...input);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.