Skip to content

Commit 2896219

Browse files
Trotttargos
authored andcommitted
test: add coverage for breakLength one-column array
Add coverage for breakLength option resulting in a single-column array display. Refs: https://coverage.nodejs.org/coverage-0b6d3070a176d437/lib/internal/util/inspect.js.html#L1277 PR-URL: #36657 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 5064822 commit 2896219

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

test/parallel/test-util-inspect.js

+19
Original file line numberDiff line numberDiff line change
@@ -3058,3 +3058,22 @@ assert.strictEqual(
30583058
Object.setPrototypeOf(generatorPrototype, originalProtoOfProto);
30593059
assert.strictEqual(getProtoOfProto(), originalProtoOfProto);
30603060
}
3061+
3062+
{
3063+
// Test for when breakLength results in a single column.
3064+
const obj = Array(9).fill('fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf');
3065+
assert.strictEqual(
3066+
util.inspect(obj, { breakLength: 256 }),
3067+
'[\n' +
3068+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3069+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3070+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3071+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3072+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3073+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3074+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3075+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf',\n" +
3076+
" 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf'\n" +
3077+
']'
3078+
);
3079+
}

0 commit comments

Comments
 (0)