Wordwrap a string with ANSI escape codes
Overall
score
100%
{
"context": "This criteria evaluates how well the engineer uses the wrap-ansi package to handle whitespace-only input edge cases. The focus is on correctly utilizing wrap-ansi's trim option to achieve different behaviors when processing strings containing only whitespace characters.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses wrapAnsi function",
"description": "Imports and calls the wrapAnsi function from the wrap-ansi package (not implementing custom wrapping logic)",
"max_score": 20
},
{
"name": "Passes trim option",
"description": "Correctly passes the trim option from the input options object to wrapAnsi's options parameter",
"max_score": 25
},
{
"name": "Handles trim enabled",
"description": "When trim is enabled (or default), whitespace-only strings are correctly processed to return empty strings by passing {trim: true} or using the default behavior",
"max_score": 20
},
{
"name": "Handles trim disabled",
"description": "When trim is disabled, whitespace-only strings are preserved by passing {trim: false} to wrapAnsi",
"max_score": 20
},
{
"name": "Correct parameter order",
"description": "Calls wrapAnsi with the correct parameter order: wrapAnsi(string, columns, options)",
"max_score": 15
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-wrap-ansidocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10