Skip to content

Commit 0037e7b

Browse files
committed
style: run prettier on src/commands/test.ts
1 parent 1788bca commit 0037e7b

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
@@ -1211,7 +1211,10 @@ export async function runUpdate(
12111211
requireNonEmpty('test-id', opts.testId);
12121212
// P1-3: client-side length checks matching server limits.
12131213
if (opts.name !== undefined && opts.name.trim().length === 0) {
1214-
throw localValidationError('name', 'must be a non-empty string (whitespace-only is not allowed)');
1214+
throw localValidationError(
1215+
'name',
1216+
'must be a non-empty string (whitespace-only is not allowed)',
1217+
);
12151218
}
12161219
if (opts.name !== undefined && opts.name.length > 200) {
12171220
throw localValidationError('name', 'must be at most 200 characters');

0 commit comments

Comments
 (0)