Skip to content

Commit 5ea306c

Browse files
committed
style: run prettier on src/commands/test.ts
1 parent c0ee538 commit 5ea306c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/commands/test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1244,7 +1244,10 @@ export async function runUpdate(
12441244
requireNonEmpty('test-id', opts.testId);
12451245
// P1-3: client-side length checks matching server limits.
12461246
if (opts.name !== undefined && opts.name.trim().length === 0) {
1247-
throw localValidationError('name', 'must be a non-empty string (whitespace-only is not allowed)');
1247+
throw localValidationError(
1248+
'name',
1249+
'must be a non-empty string (whitespace-only is not allowed)',
1250+
);
12481251
}
12491252
if (opts.name !== undefined && opts.name.length > 200) {
12501253
throw localValidationError('name', 'must be at most 200 characters');

0 commit comments

Comments
 (0)