Skip to content

Commit ec097de

Browse files
committed
prettier
1 parent 48c48fc commit ec097de

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/traceloop-sdk/test/ai-sdk-agent-integration.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ describe("Test AI SDK Agent Integration with Recording", function () {
142142
const spans = memoryExporter.getFinishedSpans();
143143

144144
// Find the root AI span (should now be named with agent name)
145-
const rootSpan = spans.find((span) => span.name === "test_calculator_agent");
145+
const rootSpan = spans.find(
146+
(span) => span.name === "test_calculator_agent",
147+
);
146148

147149
// Find tool call span
148150
const toolSpan = spans.find((span) => span.name.endsWith(".tool"));
@@ -347,7 +349,9 @@ describe("Test AI SDK Agent Integration with Recording", function () {
347349
const spans = memoryExporter.getFinishedSpans();
348350

349351
// Find the root AI span (should be named with agent name)
350-
const rootSpan = spans.find((span) => span.name === "profile_generator_agent");
352+
const rootSpan = spans.find(
353+
(span) => span.name === "profile_generator_agent",
354+
);
351355

352356
assert.ok(result);
353357
assert.ok(

0 commit comments

Comments
 (0)