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 c0ee538 commit 5ea306cCopy full SHA for 5ea306c
1 file changed
src/commands/test.ts
@@ -1244,7 +1244,10 @@ export async function runUpdate(
1244
requireNonEmpty('test-id', opts.testId);
1245
// P1-3: client-side length checks matching server limits.
1246
if (opts.name !== undefined && opts.name.trim().length === 0) {
1247
- throw localValidationError('name', 'must be a non-empty string (whitespace-only is not allowed)');
+ throw localValidationError(
1248
+ 'name',
1249
+ 'must be a non-empty string (whitespace-only is not allowed)',
1250
+ );
1251
}
1252
if (opts.name !== undefined && opts.name.length > 200) {
1253
throw localValidationError('name', 'must be at most 200 characters');
0 commit comments