| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 954a369 commit 9f7fbcc
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3059,3 +3059,22 @@ assert.strictEqual( | |||
| 3059 | 3059 | Object.setPrototypeOf(generatorPrototype, originalProtoOfProto); | |
| 3060 | 3060 | assert.strictEqual(getProtoOfProto(), originalProtoOfProto); | |
| 3061 | 3061 | } | |
| 3062 | + | ||
| 3063 | + { | ||
| 3064 | + // Test for when breakLength results in a single column. | ||
| 3065 | + const obj = Array(9).fill('fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf'); | ||
| 3066 | + assert.strictEqual( | ||
| 3067 | + util.inspect(obj, { breakLength: 256 }), | ||
| 3068 | + '[\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 | + " 'fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf'\n" + | ||
| 3078 | + ']' | ||
| 3079 | + ); | ||
| 3080 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments