We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1788bca commit 0037e7bCopy full SHA for 0037e7b
1 file changed
src/commands/test.ts
@@ -1211,7 +1211,10 @@ export async function runUpdate(
1211
requireNonEmpty('test-id', opts.testId);
1212
// P1-3: client-side length checks matching server limits.
1213
if (opts.name !== undefined && opts.name.trim().length === 0) {
1214
- throw localValidationError('name', 'must be a non-empty string (whitespace-only is not allowed)');
+ throw localValidationError(
1215
+ 'name',
1216
+ 'must be a non-empty string (whitespace-only is not allowed)',
1217
+ );
1218
}
1219
if (opts.name !== undefined && opts.name.length > 200) {
1220
throw localValidationError('name', 'must be at most 200 characters');
0 commit comments