Skip to content

Commit 3af1de9

Browse files
sergicalclaude
andcommitted
style: fix lint formatting in test files
Break long function call lines into multiline format to satisfy the formatter's line length requirements. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 08360ff commit 3af1de9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

test/commands/log/list.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,11 @@ describe("listCommand.func — period flag", () => {
690690
test("trace mode uses 14d default when period is omitted", async () => {
691691
const { context } = createMockContext();
692692
const func = await listCommand.loader();
693-
await func.call(context, { json: true, limit: 100, sort: "newest" }, TRACE_ID);
693+
await func.call(
694+
context,
695+
{ json: true, limit: 100, sort: "newest" },
696+
TRACE_ID
697+
);
694698

695699
expect(listTraceLogsSpy).toHaveBeenCalledWith(ORG, TRACE_ID, {
696700
query: undefined,

test/commands/trace/logs.test.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,13 @@ describe("logsCommand.func", () => {
331331
await expect(
332332
func.call(
333333
context,
334-
{ json: false, web: false, period: "14d", limit: 100, sort: "newest" },
334+
{
335+
json: false,
336+
web: false,
337+
period: "14d",
338+
limit: 100,
339+
sort: "newest",
340+
},
335341
TRACE_ID
336342
)
337343
).rejects.toThrow(ContextError);

0 commit comments

Comments
 (0)