Skip to content

Commit 7d92384

Browse files
committed
Code formatting
1 parent 1b45622 commit 7d92384

File tree

1 file changed

+14
-5
lines changed
  • dev-packages/node-integration-tests/suites/tracing/langchain

1 file changed

+14
-5
lines changed

dev-packages/node-integration-tests/suites/tracing/langchain/test.ts

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,18 @@ describe('LangChain integration', () => {
231231
]),
232232
};
233233

234-
createEsmAndCjsTests(__dirname, 'scenario-message-truncation.mjs', 'instrument-with-pii.mjs', (createRunner, test) => {
235-
test('truncates messages when they exceed byte limit', async () => {
236-
await createRunner().ignore('event').expect({ transaction: EXPECTED_TRANSACTION_MESSAGE_TRUNCATION }).start().completed();
237-
});
238-
});
234+
createEsmAndCjsTests(
235+
__dirname,
236+
'scenario-message-truncation.mjs',
237+
'instrument-with-pii.mjs',
238+
(createRunner, test) => {
239+
test('truncates messages when they exceed byte limit', async () => {
240+
await createRunner()
241+
.ignore('event')
242+
.expect({ transaction: EXPECTED_TRANSACTION_MESSAGE_TRUNCATION })
243+
.start()
244+
.completed();
245+
});
246+
},
247+
);
239248
});

0 commit comments

Comments
 (0)